我即将开始学习编写 GUI。现在我知道最好是第一次手动编写代码以掌握这些概念。
我的问题是:我是否需要禁用 Netbeans 中的 GUI 构建器才能执行此操作?查了一下 Netbeans 论坛,但找不到明确的答案。似乎大多数程序员仍然更喜欢手动编码选项。
感谢您的关注
我即将开始学习编写 GUI。现在我知道最好是第一次手动编写代码以掌握这些概念。
我的问题是:我是否需要禁用 Netbeans 中的 GUI 构建器才能执行此操作?查了一下 Netbeans 论坛,但找不到明确的答案。似乎大多数程序员仍然更喜欢手动编码选项。
感谢您的关注
不,您不必禁用任何东西。您可以立即开始编写 Swing 代码。
HelloWorldSwing
通过粘贴程序的源代码并运行它自己尝试一下。这是一个缩写版本:
import javax.swing.*;
public class HelloWorldSwing {
private static void createAndShowGUI() {
//Create and set up the window.
JFrame frame = new JFrame("HelloWorldSwing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//Add the ubiquitous "Hello World" label.
JLabel label = new JLabel("Hello World");
frame.getContentPane().add(label);
//Display the window.
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args) {
//Schedule a job for the event-dispatching thread:
//creating and showing this application's GUI.
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI();
}
});
}
}
Swing 可以在没有任何额外内容的情况下启动,这是一个示例。
import javax.swing.JFrame;
import javax.swing.JLabel;
public class HelloWorldFrame extends JFrame {
//Programs entry point
public static void main(String args[]) {
new HelloWorldFrame();
}
//Class Constructor to create components
HelloWorldFrame() {
JLabel jlbHelloWorld = new JLabel("Hello World");
add(jlbHelloWorld); //Add the label to the frame
this.setSize(100, 100); //set the frame size
setVisible(true); //Show the frame
}
}
Note: This is the minimal to get it running a Extremely simple version... @aioobe is the more standard approach but requires understanding more concepts :)