問題:
您對從以下位置呼叫一個JFrame 感到困惑另一種方法是在NetBeans 中使用沒有任何按鈕的計時器。能提供一下解決方案嗎?
答案:
您的問題不夠清晰,但一般不建議使用多個框架。或者,您可以使用如下所示的無模式對話框:
Java 程式碼:
<code class="java">import java.awt.EventQueue; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.WindowEvent; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; import javax.swing.JDialog; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JOptionPane; import javax.swing.Timer; /** * @see https://stackoverflow.com/a/12451673/230513 */ public class JOptionTimeTest implements ActionListener, PropertyChangeListener { // Constants private static final int TIME_OUT = 10; // Instance Variables private int count = TIME_OUT; private final Timer timer = new Timer(1000, this); private JDialog dialog = new JDialog(); private final JOptionPane optPane = new JOptionPane(); public static void main(String[] args) { EventQueue.invokeLater(new Runnable() { public void run() { new JOptionTimeTest().createGUI(); } }); } private void createGUI() { // Create a JFrame</code>
以上是如何使用沒有按鈕的計時器從另一個 JFrame 呼叫一個 JFrame?的詳細內容。更多資訊請關注PHP中文網其他相關文章!