我是Java的新手。
我制作了一个新的NewJFrame.java。
在我目前的框架中,我有一个按钮,如何将其链接到NewJFrame.java?
答案 0 :(得分:1)
为此按钮添加一个事件处理程序,然后在其中创建并显示NewJFrame。
已编辑:这是一个基本示例how to make a JFrame:
//1. Create the frame.
JFrame frame = new JFrame("FrameDemo");
//2. Optional: What happens when the frame closes?
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//3. Create components and put them in the frame.
//...create emptyLabel...
frame.getContentPane().add(emptyLabel, BorderLayout.CENTER);
//4. Size the frame.
frame.pack();
//5. Show it.
frame.setVisible(true);
请RTFM。