I did it with `label().apply { bind( property = mo...
# tornadofx
s
I did it with
label().apply { bind( property = model.itemProperty, readonly = true, converter = object: StringConverter<Foo>() { /* toString calls Foo::getSomething() */ } ) }
. Is there a better approach?