版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、JAVA四種方法實(shí)現(xiàn)事件監(jiān)聽(tīng)1.外部類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng):importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclassListenerlextendsJFrameJButtonbutton1,button2;JPanelpane1,pane2,p1,p2;CardLayoutcard1=newCardLayout();/*CardLayout布局方式將容器中的每個(gè)組件看作一張卡片。一次只能看到一張卡片,容器則充當(dāng)卡片的堆棧*/Listener1()this.setTitle(外部類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng)”);this.setBo
2、unds(200,200,300,200);this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);this.setVisible(true);init();publicvoidinit()p1=newJPanel();p1.add(newJLabel(第一個(gè)面板”);p1.setBackground(Color.red);p2=newJPanel();p2.add(newJLabel(第二個(gè)面板);p2.setBackground(Color.green);pane1=newJPanel(card1);panel.add(紅色,p1);pane
3、l.add(綠色,p2);button1=newJButton(紅色);button2=newJButton(綠色);pane2=newJPanel();pane2.add(button1);pane2.add(button2);this.add(pane1,BorderLayout.CENTER);this.add(pane2,BorderLayout.SOUTH);button1.addActionListener(newColorEvent(card1,pane1);button2.addActionListener(newColorEvent(card1,pane1);publicst
4、aticvoidmain(Stringargs)/TODOAuto-generatedmethodstubnewListener1();classColorEventimplementsActionListenerCardLayoutcard1=newCardLayout();JPanelpane1=newJPanel();ColorEvent(CardLayoutcard1,JPanelpane1)this.card1=card1;this.pane1=pane1;OverridepublicvoidactionPerformed(ActionEvente)/TODOAuto-generat
5、edmethodstubif(e.getActionCommand().equals(紅色)/getActionCommand()返回與此動(dòng)作相關(guān)的命令字符串card1.show(pane1,紅色”);elseif(e.getActionCommand().equals(綠色)card1.show(pane1,綠色”);2.內(nèi)部類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng):importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclassListener2extendsJFrameJButtonbutton1,button2;JPanelpane1
6、,pane2,p1,p2;CardLayoutcard1=newCardLayout();/*CardLayout布局方式將容器中的每個(gè)組件看作一張卡片。一次只能看到一張卡片,容器則充當(dāng)卡片的堆棧*/Listener2()this.setTitle(內(nèi)部類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng));this.setBounds(200,200,300,200);this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);this.setVisible(true);init();publicvoidinit()p1=newJPanel();p1.add(newJLabel(第一個(gè)
7、面板”);p1.setBackground(Color.red);p2=newJPanel();p2.add(newJLabel(第二個(gè)面板);p2.setBackground(Color.green);pane1=newJPanel(card1);panel.add(紅色,p1);panel.add(綠色,p2);button1=newJButton(紅色);button2=newJButton(綠色);pane2=newJPanel();pane2.add(button1);pane2.add(button2);this.add(pane1,BorderLayout.CENTER);thi
8、s.add(pane2,BorderLayout.SOUTH);button1.addActionListener(newColorEvent();button2.addActionListener(newColorEvent();classColorEventimplementsActionListenerOverridepublicvoidactionPerformed(ActionEvente)/TODOAuto-generatedmethodstubif(e.getSource()=button1)/返回發(fā)生事件的對(duì)象。card1.show(pane1,紅色);elseif(e.get
9、Source()=button2)card1.show(pane1,綠色);publicstaticvoidmain(Stringargs)/TODOAuto-generatedmethodstubnewListener2();3.自身類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng):importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclassListener3extendsJFrameimplementsActionListenerJButtonbutton1,button2;JPanelpane1,pane2,p1,p2;CardLayout
10、card1=newCardLayout();/*CardLayout布局方式將容器中的每個(gè)組件看作一張卡片。一次只能看到一張卡片,容器則充當(dāng)卡片的堆棧*/Listener3()this.setTitle(自身類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng)”);this.setBounds(200,200,300,200);this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);this.setVisible(true);init();publicvoidinit()p1=newJPanel();p1.add(newJLabel(第一個(gè)面板”);p1.setBackground(
11、Color.red);p2=newJPanel();p2.add(newJLabel(第二個(gè)面板);p2.setBackground(Color.green);pane1=newJPanel(card1);panel.add(紅色,p1);panel.add(綠色,p2);button1=newJButton(紅色);button2=newJButton(綠色);pane2=newJPanel();pane2.add(button1);pane2.add(button2);this.add(pane1,BorderLayout.CENTER);this.add(pane2,BorderLayo
12、ut.SOUTH);button1.addActionListener(this);button2.addActionListener(this);OverridepublicvoidactionPerformed(ActionEvente)/TODOAuto-generatedmethodstubif(e.getActionCommand().equals(紅色)/getActionCommand()返回與此動(dòng)作相關(guān)的命令字符串card1.show(pane1,紅色);elseif(e.getActionCommand().equals(綠色)card1.show(pane1,綠色);pub
13、licstaticvoidmain(Stringargs)/TODOAuto-generatedmethodstubnewListener3();4.匿名類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng):importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclassListener4extendsJFrameJButtonbutton1,button2;JPanelpane1,pane2,p1,p2;CardLayoutcard1=newCardLayout();/*CardLayout布局方式將容器中的每個(gè)組件看作一張卡片。一次只能看到一張卡片,
14、容器則充當(dāng)卡片的堆棧*/Listener4()this.setTitle(匿名類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng));this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);this.setBounds(200,200,300,200);this.setVisible(true);init();publicvoidinit()p1=newJPanel();pl.add(newJLabel(第一個(gè)面板);p1.setBackground(Color.red);p2=newJPanel();p2.add(newJLabel(第二個(gè)面板);p2.setBackground(
15、Color.green);pane1=newJPanel(card1);panel.add(紅色,p1);panel.add(綠色,p2);button1=newJButton(紅色);button2=newJButton(綠色);pane2=newJPanel();pane2.add(button1);pane2.add(button2);this.add(pane1,BorderLayout.CENTER);this.add(pane2,BorderLayout.SOUTH);button1.addActionListener(newActionListener()OverridepublicvoidactionPerformed(ActionEventarg0)/TODOAuto-generatedmethodstubcard1.
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年度木材行業(yè)節(jié)能減排技術(shù)改造合同范本8篇
- 2025年洗車(chē)場(chǎng)場(chǎng)地租賃合同:專業(yè)洗車(chē)服務(wù)協(xié)議范本3篇
- 2025版外架班組勞務(wù)分包及智慧工地合同2篇
- 碎石購(gòu)買(mǎi)與工程預(yù)算控制2025年度合同2篇
- 2025版衛(wèi)生間裝修施工與環(huán)保材料采購(gòu)合同2篇
- 羽絨制品企業(yè)發(fā)展戰(zhàn)略咨詢2025年度合同3篇
- 2025版圖書(shū)館特色館藏建設(shè)采購(gòu)合同3篇
- 2025年度高科技產(chǎn)品買(mǎi)賣(mài)合同書(shū)樣本4篇
- D打印技術(shù)在建筑外立面設(shè)計(jì)的應(yīng)用考核試卷
- 二零二五版4S店尊貴訂車(chē)合同模板2篇
- 2025年山東浪潮集團(tuán)限公司招聘25人高頻重點(diǎn)提升(共500題)附帶答案詳解
- 2024年財(cái)政部會(huì)計(jì)法律法規(guī)答題活動(dòng)題目及答案一
- 2025年江西省港口集團(tuán)招聘筆試參考題庫(kù)含答案解析
- (2024年)中國(guó)傳統(tǒng)文化介紹課件
- 液化氣安全檢查及整改方案
- 《冠心病》課件(完整版)
- 2024年云網(wǎng)安全應(yīng)知應(yīng)會(huì)考試題庫(kù)
- 公園保潔服務(wù)投標(biāo)方案
- 光伏電站項(xiàng)目合作開(kāi)發(fā)合同協(xié)議書(shū)三方版
- 2024年秋季新滬教版九年級(jí)上冊(cè)化學(xué)課件 第2章 空氣與水資源第1節(jié) 空氣的組成
- 香港中文大學(xué)博士英文復(fù)試模板
評(píng)論
0/150
提交評(píng)論