<@U0F3291QE> Too bad Kotlin doesn't support multip...
# tornadofx
r
@edvin Too bad Kotlin doesn't support multiple receivers, or you could do something like
Copy code
button("Say Hello") { ctrl.helloCommand with nameProperty }
As it is,
bind
is used elsewhere for properties, but in a different way that could be confusing. You could go more specific with something like
assignCommand(ctrl.helloCommand, nameProperty)
, but that's longer to type.