📄 framebase.java
字号:
package ch7;
import java.awt.*;
public class FrameBase extends Frame
{
public FrameBase()
{
this.setTitle("Frame容器窗口示例程序");
this.setSize(400,300);
this.setBackground(Color.blue);
this.setVisible(true);
}
public FrameBase(int width,int height)
{
this.setTitle("Frame容器窗口");
this.setSize(width,height);
this.setBackground(Color.darkGray);
this.setVisible(true);
}
public FrameBase(int width,int height,String title,Color color)
{
this.setTitle(title);
this.setSize(width,height);
this.setBackground(color);
this.setVisible(true);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -