JavaFX格式化DoubleProperty

时间:2015-07-12 23:20:18

标签: binding javafx formatting

我在画布上有一个矩形的绑定,如下所示:

xLeft.textProperty()结合(fieldCanvas.layoutXProperty()asString());

返回TextField中返回的值,带有一个小数位。由于我正在使用像素,我试图摆脱DP,即显示为整数。

如何将DoubleProperty(layoutXProperty)格式化为零DP?

1 个答案:

答案 0 :(得分:0)

xLeft.textProperty().bind(fieldCanvas.layoutXProperty().asString("%.0f"));