📄 notepadframelistener.java
字号:
/* * NotepadFrameListener.java * * Created on 2007年1月4日, 下午6:53 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */package net.vlinux.notepad.listener;import java.awt.event.WindowAdapter;import java.awt.event.WindowEvent;import net.vlinux.notepad.gui.NotepadFrame;import net.vlinux.notepad.gui.NotepadGUI;/** * * @author vlinux */public class NotepadFrameListener extends NotepadFrame { public NotepadFrameListener(int x, int y, int width, int height, final NotepadGUI gui) { super(x,y,width,height); addWindowListener(new WindowAdapter(){ public void windowClosing(WindowEvent e) { new NotepadMenuListener(gui).exit(); } }); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -