将数字属性绑定到布尔属性

时间:2016-01-17 06:55:16

标签: javafx-8 groovyfx

我在GridPane中使用了TitledPane,我想在网格窗格行约束上设置percentHeight,具体取决于是否扩展了TitledPane。 e.g。

gridPane {
    columnConstraints(hgrow: 'always')
    rowConstraints(vgrow: 'always')  // first row
    wgridRow1 = rowConstraints(percentHeight: 30) //2nd row
    node(column:0, row:0) // 
    tp = titledPane(column: 0, row: 1) {
        listView(items: ['one', 'two', 'three'])
    }
}

我可以根据标题窗格是否展开来使用绑定来设置行约束percentHeight吗? e.g。

wgridRow1.percentHeightProperty().bind(tp.expandedProperty()).using
{ it ? 30 : -1 }

我可以通过向扩展属性添加一个侦听器来解决,但我只是想知道是否可以通过单向绑定来完成。

谢谢,

1 个答案:

答案 0 :(得分:2)

您可以使用Bindings API。我不知道Groovy语法,但在JavaFX中它看起来像

wgridRow1.percentHeightProperty().bind(Bindings
    .when(tp.expandedProperty())
    .then(30)
    .otherwise(-1));