TornadoFX bind ListView to ListProperty
问题 Is it possible in tornadoFX to bind a ListView to a ListProperty? I have a ViewModel like follows: class MyVm: ItemViewModel<Item>() { val stringProperty = bind { item?.myString?.toProperty() } } class MyView: View() { ... init { with (root) { label(myVm.stringProperty) } } } if the item changes with vm.item = Item(...) the stringProperty will be updated accordingly, which will update all bound labels etc... Now I want to do the same with a ListView: class MyVm: ItemViewModel<Item>() { val