📄 jframe-excerpt.java
字号:
...// Setup a JFrame for practical use JFrame theFrame = new JFrame("Application Name"); JMenuBar theMenuBar = new JMenuBar(); // code to define items on Menu, event handlers, etc. ... theFrame.setJMenuBar(theMenuBar); JPanel thePanel = new JPanel(); // code to define what is on panel, layout manager, // define user interface, command control, etc. // (non-trivial) ... theFrame.setContentPane(thePanel); theFrame.pack(); theFrame.setVisible(true); ...
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -