gpt4 book ai didi

java - 打开新舞台窗口时的应用程序 "freeze"

转载 作者:太空宇宙 更新时间:2023-11-04 14:12:32 28 4
gpt4 key购买 nike

假设,我有一个 MenuBar,其中有几个 MenuItem。每个 MenuItem 负责打开不同的 Stage 窗口。当应用程序正在消化新 Stage 的代码时,如何避免单击上述 MenuItem 之一后应用程序“卡住”?

最佳答案

您可以尝试如下操作:

new Thread( new Task<Pane>()
{
protected Pane call()
{
Pane gui = .... ;
// this part runs on a background thread
// build or load your GUI here.
return gui;
}

protected void succeeded()
{
// this part will run on fx thread
// add your GUI to the scene here
Pane gui = getValue();
}

}).start();

关于java - 打开新舞台窗口时的应用程序 "freeze",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28136582/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com