javafx,获取对应用程序线程的引用

时间:2012-10-08 21:47:10

标签: javafx-2

在摇摆中我们有:

boolean SwingUtilities.isEventDispatchThread()

如果从swing事件派发线程调用它,则返回true。

javafx中有类似的东西吗?

1 个答案:

答案 0 :(得分:3)

是的,您可以查看you are in the FX thread with

Platform.isFxApplicationThread();

请注意,许多UI交互方法在FX线程外部调用时会抛出异常。