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

📄 testpanel.java

📁 常用的java控件使用实例源代码
💻 JAVA
字号:
import java.awt.*;
public  class TestPanel {
	
	public static void main(String agrs[]){
		new MyFrame("MyFrameWthPanel",300,300,400,300);
	}
}	
class MyFrame extends Frame {
	private Panel p1,p2;
	MyFrame (String s, int x, int y, int w, int h) {
		super(s);
		setLayout(null);
		setBackground(Color.black);
		p1 = new Panel(null);
		p2 = new Panel(null);
		p1.setBounds(0,0,w/2,h);
		p2.setBounds(h/2,0,w/2,h);
		
		p1.setBackground(Color.blue);
		p2.setBackground(Color.green);
		add(p1);add(p2);
		setBounds(x,y,w,h);
		setVisible(true);
	}
}
			

⌨️ 快捷键说明

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