Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
现在我的 jdk7 和 javafx2 是最新的。我想这样编码:UI - > FXML(然后在顶部节点的.fxml中定义控制器)和场景构建器。控制器 -> .fxml 中定义的类。
然后我在 Controller 类中编写逻辑的东西。
有一个麻烦或只是我的问题,如何在 Controller 中获得舞台参考,因为有时我需要控制我的舞台。
(对不起,我的英语很差,但意思几乎像上面一样)
请告诉我这样做的方法,非常感谢!
如果您将元素与带有根元素的场景绑定,那么您可以获得与它们绑定的舞台参考
Stage stage = (Stage)controlObj.getScene().getWindow();