📄 ch7_e7_6.java
字号:
import java.applet.*;
import java.awt.*;
public class ch7_e7_6 extends Applet
{
Label redLbl = new Label("红色");
Label yellowLbl = new Label("黄色");
Label blueLbl = new Label("蓝色");
public void init()
{
redLbl.setBackground(Color.red);
yellowLbl.setBackground(Color.yellow);
blueLbl.setBackground(Color.blue);
add(redLbl);
add(yellowLbl);
add(blueLbl);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -