notepadtextarea.java

来自「一个用swt开发的JAVA记事本」· Java 代码 · 共 26 行

JAVA
26
字号
/* * NotepadTextArea.java * * Created on 2007年1月4日, 下午12:36 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */package net.vlinux.notepad.gui;import javax.swing.JTextArea;import net.vlinux.notepad.listener.NotepadTextAreaListener;/** * * @author vlinux */public class NotepadTextArea extends JTextArea {    public static JTextArea instance(NotepadGUI gui) {        return new NotepadTextAreaListener(gui);    }    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?