java swing 組件大全

java swing 組件大全

ID:37922261

大小:57.00 KB

頁數(shù):10頁

時(shí)間:2019-06-02

java swing 組件大全_第1頁
java swing 組件大全_第2頁
java swing 組件大全_第3頁
java swing 組件大全_第4頁
java swing 組件大全_第5頁
資源描述:

《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

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動(dòng)畫的文件,查看預(yù)覽時(shí)可能會(huì)顯示錯(cuò)亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負(fù)責(zé)整理代發(fā)布。如果您對本文檔版權(quán)有爭議請及時(shí)聯(lián)系客服。
3. 下載前請仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時(shí)可能由于網(wǎng)絡(luò)波動(dòng)等原因無法下載或下載錯(cuò)誤,付費(fèi)完成后未能成功下載的用戶請聯(lián)系客服處理。