📄 appleteam.java
字号:
import java.awt.*;
import java.applet.*;
public class AppletEam extends Applet{
public void init(){
this.setBackground(Color.GRAY);
}
public void paint(Graphics g){
g.drawString("hello world", 10, 50);
this.setForeground(Color.white);
}
public void setRed(){
this.setBackground(Color.red);
}
public void setGreen(){
this.setBackground(Color.green);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -