📄 ipcameraview.java
字号:
/** * */package sept.view;import java.awt.Container;import javax.swing.JFrame;import javax.swing.JMenu;import javax.swing.JMenuBar;import javax.swing.JMenuItem;/** * @author gmateski * */public class IPCameraView extends JFrame { private IPMenuBar menuBar; private WindowProperties wp; /** * Constructor, sets window properties (size and position), to the values stored * in a file. If the file does not exist, default size and position is selected. */ public IPCameraView(){ super(); wp = new WindowProperties(); buildMenuBar(); } /** * Adds a MenuBar to the Application Frame */ private void buildMenuBar(){ menuBar = new IPMenuBar(); /*add the menubar to the frame */ this.setJMenuBar(menuBar); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -