📄 bookmarkspanel.java
字号:
/** * BookmarksPanel.java * Created on 17.03.2003, 22:55:39 Alex * Package: net.sf.memoranda.ui * * @author Alex V. Alishevskikh, alex@openmechanics.net * Copyright (c) 2003 Memoranda Team. http://memoranda.sf.net */package net.sf.memoranda.ui;import java.awt.BorderLayout;import javax.swing.JPanel;import javax.swing.JScrollPane;/*$Id: BookmarksPanel.java,v 1.4 2004/04/05 10:05:44 alexeya Exp $*/public class BookmarksPanel extends JPanel { BorderLayout borderLayout1 = new BorderLayout(); JScrollPane scrollPane = new JScrollPane(); public NotesList notesList = new NotesList(NotesList.BOOKMARKS); public BookmarksPanel() { 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 + -