📄 editorpane.java
字号:
import java.awt.*;
import javax.swing.*;
/*
<APPLET
CODE = editorpane.class
WIDTH = 350
HEIGHT = 280>
</APPLET>
*/
public class editorpane extends JApplet
{
JEditorPane jeditorpane = new JEditorPane();
public editorpane()
{
Container contentPane = getContentPane();
jeditorpane.setEditable(true);
jeditorpane.setText("Hello from Swing!");
contentPane.add(new JScrollPane(jeditorpane));
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -