swing基础(一)

1、创建框架:

import java.awt.*;
import javax.swing.*;

public class SimpleFrameTest {
	public static void main(String[] args) {
		// 事件调度线程
		EventQueue.invokeLater(new Runnable() {
			public void run() {
				// 创建一个SimpleFrame窗体
				SimpleFrame frame = new SimpleFrame();
				// 默认关闭窗口时退出
				frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
				// 设置窗体可见
				frame.setVisible(true);
			}
		});
	}
}

class SimpleFrame extends JFrame {
	// 构造函数
	public SimpleFrame() {
		setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);
	}
	// 声明默认窗体宽度
	public static final int DEFAULT_WIDTH = 300;
	// 声明默认窗体高度
	public static final int DEFAULT_HEIGHT = 200;
}

 

2、框架定位:

import java.awt.*;
import javax.swing.*;

public class SimpleFrameTest {
	public static void main(String[] args) {
		// 事件调度线程
		EventQueue.invokeLater(new Runnable() {
			public void run() {
				// 创建一个SimpleFrame窗体
				SimpleFrame frame = new SimpleFrame();
				// 默认关闭窗口时退出
				frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
				// 设置窗体可见
				frame.setVisible(true);
				//定位窗体的位置
				frame.setLocation(200,300);
				// 创建一个SimpleFrame窗体
				SimpleFrame frame1 = new SimpleFrame();
				//将窗体定位于(100,100)处,宽度设置为200,高度设置为400
				frame1.setBounds(100,100,200,400);
				//设置窗体为可见
				frame1.setVisible(true);
				// 创建一个SimpleFrame窗体
				SimpleFrame frame2 = new SimpleFrame();
				//设置窗体为可见
				frame2.setVisible(true);
				//根据平台设置窗体的位置
				try{
					frame2.setLocationByPlatform(true);
				}catch(IllegalComponentStateException e){
					
				}
			}
		});
	}
}
class SimpleFrame extends JFrame {
	// 构造函数
	public SimpleFrame() {
		setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);
	}
	// 声明默认窗体宽度
	public static final int DEFAULT_WIDTH = 300;
	// 声明默认窗体高度
	public static final int DEFAULT_HEIGHT = 200;
}

 

 

3、框架属性:

4、决定框架大小:

 

import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.IllegalComponentStateException;
import java.awt.Image;
import java.awt.Toolkit;

import javax.swing.JFrame;

public class SimpleFrameTest {
	public static void main(String[] args) {
		// 事件调度线程
		EventQueue.invokeLater(new Runnable() {
			public void run() {
				// 创建一个SimpleFrame窗体
				SimpleFrame frame = new SimpleFrame();
				// 默认关闭窗口时退出
				frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
				// 设置窗体可见
				frame.setVisible(true);
				//定位窗体的位置
				frame.setLocation(200,300);
				//设置窗体的标题
				frame.setTitle("This is a Jframe!");
				//调用Toolkit类的静态方法得到一个Toolkit对象
				Toolkit kit = Toolkit.getDefaultToolkit();
				//通过kit对象的getImage方法获得image对象
				Image img = kit.getImage("qq.jpg");
				//设置窗体图标
				frame.setIconImage(img);
				//调用Toolkit的对象的getScreenSize()方法
				Dimension screenSize = kit.getScreenSize();
				int screenWidth = screenSize.width;
				int screenHeight = screenSize.height;
				//设置窗体的大小:
				frame.setSize(screenWidth/2,screenHeight/2);
				// 创建一个SimpleFrame窗体
				SimpleFrame frame1 = new SimpleFrame();
				//将窗体定位于(100,100)处,宽度设置为200,高度设置为400
				frame1.setBounds(100,100,200,400);
				//设置窗体为可见
				frame1.setVisible(true);
				// 创建一个SimpleFrame窗体
				SimpleFrame frame2 = new SimpleFrame();
				//设置窗体为可见
				frame2.setVisible(true);
				//根据平台设置窗体的位置
				try{
					frame2.setLocationByPlatform(true);
				}catch(IllegalComponentStateException e){	
					System.out.println("IllegalComponentStateException");
					System.out.println(frame2.isLocationByPlatform());
				}
			}
		});
	}
}
class SimpleFrame extends JFrame {
	// 构造函数
	public SimpleFrame() {
		setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);
	}
	// 声明默认窗体宽度
	public static final int DEFAULT_WIDTH = 300;
	// 声明默认窗体高度
	public static final int DEFAULT_HEIGHT = 200;
}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值