abhinay
12/07/2017, 7:34 AMclass ToolBar : HBox() {
init {
val rect = rectangle {
fill = Color.RED
reloadStylesheetsOnFocus()
}
prefWidth = 100.0
prefHeight = 100.0
rect.widthProperty().bind(widthProperty())
rect.heightProperty().bind(heightProperty())
}
}
I am not sure if there is a better TornadoFX way :')