当前位置:  开发笔记 > 编程语言 > 正文

JavaFX Bind Label textProperty更改为多个属性

如何解决《JavaFXBindLabeltextProperty更改为多个属性》经验,为你挑选了1个好方法。

我想做的是:

我有一个JavaFX窗口,我通过拖动不断更改它的宽度和高度corners or the sidesI want when the width or height are changing那么的文本Label将具有以下格式:

~Width=[here the width of the Window],Height[here the height of the Window]~

例:

~Width=[1300],Height=[600]~

我想使用绑定而不是2(two)来做到这一点ChangeListeners

                                   I am trying:

label.textProperty().bind(I am stack here on how to do this...);

我也读过这个问题JavaFX绑定到多个属性



1> fabian..:

只要使用Bindings.createStringBindingwidthheight为依赖关系:

StringBinding binding = Bindings.createStringBinding(
            () -> MessageFormat.format("~, primaryStage.getWidth(), primaryStage.getHeight()),
            primaryStage.widthProperty(),
            primaryStage.heightProperty());

label.textProperty().bind(binding);

推荐阅读
贾志军
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有