java案例GUI-入门案例

package com.demo1;

import javax.swing.*;

public class SimpleGUI1{
	public static void main(String[] args) {		
		JFrame frame = new JFrame();          //创建frame
		JButton button = new JButton("Click me");  //创建button
		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);  // 这一行程序会在Windows关闭时把程序结束掉
		frame.getContentPane().add(button);  //把button加到frame的pane上
		frame.setSize(300, 300);  // 设定frame的大小
		frame.setVisible(true);   // 最后把frame显示出来
	}
}
运行结果:

猜你喜欢

转载自blog.csdn.net/swy18929564409/article/details/80705028