ipcameraview.java
来自「Java source code IP Camera project for s」· Java 代码 · 共 44 行
JAVA
44 行
/** * */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 + =
减小字号Ctrl + -
显示快捷键?