📄 testpanel.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 + -