firstgui.java

来自「java课件」· Java 代码 · 共 42 行

JAVA
42
字号
/* * FirstGUI.java * * Created on 2007-11-4, 21:02:09 * * To change this template, choose Tools | Templates * and open the template in the editor. *//** * * @author admin */import javax.swing.*;import java.awt.*;public class FirstGUI {    public static void main(String[] args) {        JFrame frame = new JFrame();        JButton jbtOK = new JButton("OK");        JLabel jlblName = new JLabel("Enter your name:");        JTextField jtfName = new JTextField("Type Name Here");        JCheckBox jchkBold = new JCheckBox("Bold");        JRadioButton jrbRed = new JRadioButton("Red");        JComboBox jcbColor = new JComboBox(new String[]{"Red","Green","Blue"});                Container c = frame.getContentPane();        c.setLayout(new FlowLayout());                c.add(jbtOK);        c.add(jlblName);        c.add(jtfName);        c.add(jchkBold);        c.add(jrbRed);        c.add(jcbColor);                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);        frame.setSize(500,100);        frame.setVisible(true);            }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?