And that you don't need the `@FXML` annotation. To...
# tornadofx
e
And that you don't need the
@FXML
annotation. To "inject" a component from an FXML file, just do
val myButton: Button by fxid()
. That will inject
<Button fx:id="myButton">
automatically.