資源描述:
《java swing 組件大全》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫。
1、javaswing組件大全(新手快進(jìn))importjavax.swing.*;importjava.awt.*;importjava.awt.event.*;importjavax.swing.tree.*;importjavax.swing.event.*;importjavax.swing.border.*;importjavax.swing.table.*;/***Swing組件測試程序*測試Swing所有組件及其相應(yīng)的事件*@author天翼.李2003.4.17晚23:14*@linkhttp://www.roboc
2、hina.org*@linkrobococde@etang.com*/publicclassSwingTestextendsJFrame{/***主模塊,初始化所有子模塊,并設(shè)置主框架的相關(guān)屬性*/publicSwingTest(){//初始化所有模塊MenuTestmenuTest=newMenuTest();LeftPanelleftPanel=newLeftPanel();RightPanelrightPanel=newRightPanel();BottomPanelbottomPanel=newBottomPanel(
3、);CenterPanelcenterPanel=newCenterPanel();//設(shè)置主框架的布局Containerc=this.getContentPane();//c.setLayout(newBorderLayout())this.setJMenuBar(menuTest);c.add(leftPanel,BorderLayout.WEST);c.add(rightPanel,BorderLayout.EAST);c.add(centerPanel,BorderLayout.CENTER);c.add(bottom
4、Panel,BorderLayout.SOUTH);//利用無名內(nèi)隱類,增加窗口事件this.addWindowListener(newWindowAdapter(){publicvoidWindowClosing(WindowEvente){//釋放資源,退出程序dispose();System.exit(0);}});setSize(700,500);setTitle("Swing組件大全簡體版");//隱藏frame的標(biāo)題欄,此功暫時(shí)關(guān)閉,以方便使用window事件//setUndecorated(true);setLo
5、cation(200,150);show();}/////////////////////////////////////////////////////////////////////////////***菜單欄處理模塊*JMenuBar--+*--JMenu--+*--JMenuItem--ActionListener**/classMenuTestextendsJMenuBar{privateJDialogaboutDialog;/***菜單初始化操作*/publicMenuTest(){JMenufileMenu=ne
6、wJMenu("文件");JMenuItemexitMenuItem=newJMenuItem("退出",KeyEvent.VK_E);JMenuItemaboutMenuItem=newJMenuItem("關(guān)于...",KeyEvent.VK_A);fileMenu.add(exitMenuItem);fileMenu.add(aboutMenuItem);this.add(fileMenu);aboutDialog=newJDialog();initAboutDialog();//菜單事件exitMenuItem.add
7、ActionListener(newActionListener(){publicvoidactionPerformed(ActionEvente){dispose();System.exit(0);}});aboutMenuItem.addActionListener(newActionListener(){publicvoidactionPerformed(ActionEvente){//"關(guān)于"對話框的處理aboutDialog.show();}});}/***返回關(guān)于對話框*/publicJDialoggetAbout
8、Dialog(){returnaboutDialog;}/***設(shè)置"關(guān)于"對話框的外觀及響應(yīng)事件,操作和JFrame一樣都是在內(nèi)容*框架上進(jìn)行的*/publicvoidinitAboutDialog(){aboutDialog.setTitle("關(guān)于");Containe