📄 panelexam.java
字号:
package ch7;
import java.awt.*;
public class PanelExam extends Frame
{
Panel p1;
public PanelExam()
{
p1=new Panel();
p1.setBounds(100,100,50,50);
p1.setBackground(Color.red);
this.add(p1);
this.setTitle("Frame容器窗口示例程序");
this.setSize(400,300);
this.setBackground(Color.blue);
this.setVisible(true);
}
public static void main(String [] args)
{
new PanelExam();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -