📄 textarea.java
字号:
/* * Textarea.java * * Created on 2004年9月20日, 下午1:11 *//** * * @author litertiger */import java.awt.*;public class Textarea extends java.applet.Applet { /** Initialization method that will be called after the applet is loaded * into the browser. */ public void init() { TextArea t1=new TextArea("这是一个文本区 int x 表示行数,int y 表示列数",32,32); add(t1); // TODO start asynchronous download of heavy resources } // TODO overwrite start(), stop() and destroy() methods}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -