📄 noteslistpanel.java
字号:
package net.sf.memoranda.ui;import java.awt.BorderLayout;import javax.swing.JPanel;import javax.swing.JScrollPane;/*$Id: NotesListPanel.java,v 1.5 2005/01/29 13:55:26 rawsushi Exp $*/public class NotesListPanel extends JPanel { BorderLayout borderLayout1 = new BorderLayout(); JScrollPane scrollPane = new JScrollPane(); public NotesList notesList = new NotesList(); public NotesListPanel() { try { jbInit(); } catch(Exception ex) { new ExceptionDialog(ex); } } void jbInit() throws Exception { this.setLayout(borderLayout1); this.add(scrollPane, BorderLayout.CENTER); scrollPane.getViewport().add(notesList, null); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -