?? 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 + -