簡體   English   中英

Java JButton並未真正運行

[英]Java JButton it is not running truly

我添加了一個帶有eclipse的jbutton,但是它沒有正確顯示。 我如何解決它?

這是屏幕截圖 在此處輸入圖片說明

public class GUITest // test class
{
    // block the warnings
    public static void main(String[] args) //main
    {
        System.out.println("start of main");
        /* stackoverflow want to add more details */
        JFrame frame = new JFrame();
        frame.setVisible(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(300,300);
        JPanel panel = new JPanel();
        frame.add(panel);
        JButton button = new JButton("Click here");
        panel.add(button);
        button.addActionListener(new Action());
        System.out.println("end of main");

/ * stackoverflow要添加更多詳細信息* /}

    public static class Action implements ActionListener //actionlistener
    {
        public void actionPerformed (ActionEvent e)
        { /* stackoverflow want to add more details */
            JFrame frame2 = new JFrame("Clicked");
            frame2.setVisible(true);
            frame2.setSize(200,200);
            JLabel label = new JLabel("You clicked me!");
            JPanel panel = new JPanel();
            frame2.add(panel);
            panel.add(label); // some more details

        }
    }   
}

我已經用過了,它將正常工作。 能否請您檢查圖形驅動程序或其他內容。

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author Ashwin Parmar
 */
public class GUITest {
    public static void main(String[] args) {
        System.out.println("Start");
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(300, 300);
        JPanel panel = new JPanel();
        frame.add(panel);
        JButton button = new JButton("Click here");
        panel.add(button);
        button.addActionListener(new Action());
        frame.setVisible(true);
        System.out.println("End");
    }

    public static class Action implements ActionListener{

        @Override
        public void actionPerformed(ActionEvent ae) {
            //throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
            JFrame frame2 = new JFrame("Clicked");
            frame2.setSize(200,200);
            JLabel label = new JLabel("You have clicked me!");
            JPanel panel = new JPanel();
            frame2.add(panel);
            panel.add(label);
            frame2.setVisible(true);
        }

    }

}
  • 始終在事件調度線程的上下文中創建和修改UI
  • 建立基本UI后,請盡可能最后調用setVisible 如果在窗口可見后添加組件,則需要調用revalidaterepaint

例如...

public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        @Override
        public void run() {
            try {
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                ex.printStackTrace();
            }

            JFrame frame = new JFrame("Testing");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JPanel panel = new JPanel();
            frame.add(panel);
            JButton button = new JButton("Click here");
            panel.add(button);
            button.addActionListener(new Action());             
            frame.pack();
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
        }
    });
}

ActionListener執行相同的操作。

有關更多詳細信息,請參見初始線程

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM