📄 testapplet.java
字号:
import java.applet.*;
import java.awt.*;
// note: in order to compile the applet, you
// must set this file as "Main" - select it
// in the project window, and then press F8.
// If you want to run the application version,
// set Tester.java as main.
// To run the applet, choose "Run Applet", or press
// Shift+F5. To run the application, press F5
public class TestApplet extends Applet
{
public void init()
{
this.setLayout(new BorderLayout());
this.add(new DrawCanvas(), "Center");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -