⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 firstgui.java

📁 java课件
💻 JAVA
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -