当我单击按钮时,另一个JFrame类正在打开。 JFrame将在2秒后显示在屏幕上,但是isVisible在此之前返回true。我想在JFrame实际显示在屏幕上时启动计时器。我该如何实现?我尝试使用isShowing()和isDisplayable(),但是没有给出预期的结果。
最佳答案
您可以使用如下形式:
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.*;
public class MainApp {
JFrame frame = new JFrame("Main");
JButton button = new JButton("Toggle auxiliary");
JFrame auxFrame = new JFrame("Auxiliary");
public MainApp() {
button.addActionListener(evt -> {
// Delay displaying for 2 seconds
Timer timer = new Timer(2000, event -> {
auxFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
auxFrame.setSize(320, 240);
auxFrame.setVisible(true);
});
timer.start();
auxFrame.addWindowListener(new WindowAdapter() {
@Override
public void windowOpened(WindowEvent e) {
// Stop timer after the auxiliary frame is displayed
timer.stop();
}
});
});
frame.add(button);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.setSize(320, 240);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(MainApp::new);
}
}
关于java - 如何确保Swing UI确实显示在屏幕上?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41012912/