我对Java WindowBuilder没什么经验。你能帮我么? 我将所有GUI放在第二课,但使用我在主类中需要的东西。我所做的不打印任何东西。
主类:
import java.awt.EventQueue;
public class MainClass {
static GUIClass gui;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
gui = new GUIClass();
gui.getFrame().setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public MainClass() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
gui.btnNewButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
System.out.println("Test"); //Not printing
}
});
}
}
GUI类:
import java.awt.EventQueue;
public class GUIClass {
private JFrame frame;
public JButton btnNewButton;
/**
* Launch the application.
*/
/**
* Create the application.
*/
public GUIClass() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
btnNewButton = new JButton("New button");
btnNewButton.setBounds(170, 107, 89, 23);
frame.getContentPane().add(btnNewButton);
}
public JButton getBtnNewButton() {
return btnNewButton;
}
public JFrame getFrame() {
return frame;
}
}
答案 0 :(得分:1)
问题是你从未创建过主类。
主要方法与MainClass无关。 main方法必须创建MainClass。
试试这个
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
gui = new GUIClass();
gui.getFrame().setVisible(true);
new MainClass();
} catch (Exception e) {
e.printStackTrace();
}
}
});
}