手编码GUI和Netbeans

时间:2012-08-01 09:21:12

标签: java

我即将开始学习编码GUI。现在我知道,如果你是第一次手动编码来掌握概念,那就是最好的。

我的问题是:我是否需要在Netbeans中禁用GUI buidler才能执行此操作?看了Netbeans论坛,但找不到明确的答案。似乎大多数程序员仍然喜欢手动编码选项。

感谢您的关注

2 个答案:

答案 0 :(得分:2)

不,你不必禁用任何东西。你可以马上开始编写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();
            }
        });
    }
}

答案 1 :(得分:0)

可以在没有任何额外事件的情况下开始摆动。

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
    }
}

注意:这是运行极其简单版本的最小值... @aioobe是更标准的方法,但需要了解更多概念:)