?? eventframe.java~2~
字號:
package traffic;import javax.swing.*;import java.awt.*;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2003</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class eventFrame extends JFrame { JTabbedPane jTabbedPane1 = new JTabbedPane(); busNumPanel busNumPanel1 = new busNumPanel(); stationPanel stationPanel1 = new stationPanel(); public eventFrame() { try { jbInit(); } catch(Exception e) { e.printStackTrace(); } } private void jbInit() throws Exception { this.setSize(new Dimension(400, 300)); this.setTitle("歡迎訪問"); this.getContentPane().setLayout(null); jTabbedPane1.setBounds(new Rectangle(0, 0, 400, 300)); this.getContentPane().add(jTabbedPane1, null); jTabbedPane1.add(busNumPanel1, "站點查"); jTabbedPane1.add(stationPanel1, "車次查"); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -