版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
本章內(nèi)容圖形用戶界面開發(fā)概述Java事件模型常用組件與事件處理
圖形用戶界面開發(fā)概述人機交互的窗口,由一組圖形界面成分和界面元素組成。主要工作:
創(chuàng)建界面,設(shè)置并布局,形成物理外觀;定義事件和響應(yīng),實現(xiàn)交互功能。組成:容器、控制組件和用戶自定義成分
容器:組織界面成分和元素??刂平M件:圖形用戶界面組成單位。用戶自定義部分:根據(jù)需要可自定義圖形、標志圖案等。AWT組件AWT——abstractwindowtoolkit(抽象窗口工具包)建立JFC的主要基礎(chǔ);Swing組件:建立在AWT之上,新的、功能更強大的圖形組件包。事件類字體類GraphicsComponent顏色類布局管理類java.lang.ObjectCheckboxContainerButton…WindowPanelAppletDialogFrameList圖象類菜單類JavaApplet一個JavaApplet程序中必須有一個類是Applet的子類publicclassExample8_1extendsAppletApplet類是包java.applet中的一個類,也是java.awt中Container的子類importjava.applet.*;publicvoidinit(){….}publicvoidstart(){……}publicvoidstop(){……}publicvoiddestroy(){….}publicvoidpaint(Graphicsg){……}publicvoidrepaint(Graphicsg){……}初始化init()啟動start()中止stop()銷毀destroy()瀏覽器下載并實例化Applet轉(zhuǎn)入后臺重新激活A(yù)pplet退出瀏覽器Applet生命周期:
常用組件
Component類importjava.awt.*;importjava.awt.event.*;importjava.applet.*;publicclassMyWindow1extendsApplet
implementsActionListener{
privateButtonm_btn=newButton(“test”);publicvoidinit(){add(m_btn);
m_btn.addActionListener(this);}//init()
publicvoidactionPerformed(ActionEvente){System.out.println(“Hello”);}//實現(xiàn)接口
}//MyWindowJava事件模型事件源注冊:btn.addActionListener(監(jiān)聽者對象)監(jiān)聽者類實現(xiàn)接口:publicvoidactionPerformed(ActionEvente)ActionEvent類型注冊觸發(fā)事件調(diào)用并傳遞參數(shù)ActionEvent類常用方法publicObjectgetSource(){…}
獲取發(fā)生ActionEvent事件的事件源對象例:publicvoidactionPerformed(ActionEvente){if(e.getSource()==text1)label1.setText(“It’stext1!”);elseif(e.getSource()==text2)label1.setText(“It’stext2!”);…….}publicStringgetActionCommand(){…}發(fā)生事件時,獲取文本框中的文本字符串例:publicvoidactionPerformed(ActionEvente){Strings=e.getActionCommand();label1.setText(s);}事件模型實現(xiàn)方法:方法1:定義類時實現(xiàn)監(jiān)聽接口publicclassMyWindow1extendsApplet
implementsActionListener{
privateButtonm_btn=newButton(“test”);publicvoidinit(){
add(m_btn);m_btn.addActionListener(this);}
publicvoidactionPerformed(ActionEvente){……}}方法2:在另一個類中實現(xiàn)監(jiān)聽接口
publicclassLess6extendsApplet{privateButtonm_btn=newButton(“test”);publicvoidinit(){
add(m_btn);m_btn.addActionListener(newbtnListener());}//init()}//Less6classbtnListenerimplementsActionListener{publicvoidactionPerformed(ActionEvente){
m_btn.setLabel(“事件被觸發(fā)”);}//實現(xiàn)事件接口
}//btnListener
方法3:創(chuàng)建匿名內(nèi)部類importjava.applet.*;importjava.awt.*;Importjava.awt.event.*;
publicclasstestextendsApplet
{
privateButtonm_btn=newButton(“test”);publicvoidinit(){add(m_btn);m_btn.addActionListener(newActionListener(){publicvoidactionPerformed(ActionEvente){
m_btn.setLabel(“事件被觸發(fā)”);
}//actionPerformed
});}//init()}//testEventObjectActionEventItemEventAdjustmentEventComponentEventTextEventAWTEventMouseEventKeyEventContainerEventPaintEventFocusEventInputEventWindowEvent事件類體系結(jié)構(gòu)圖:事件類監(jiān)聽器接口增加監(jiān)聽器方法刪除監(jiān)聽器方法ActionEventActionListeneraddActionListener()removeActionListener()AdjustmentEventAdjustmentListeneraddAdjustmentListener()removeAdjustmentListener()ComponentEventComponentListeneraddComponentListener()removeComponentListener()ContainerEventContainerListeneraddContainerListener()removeContainerListener()FocusEventFocusListeneraddFocusListener()removeFocusListener()KeyEventKeyListeneraddKeyListener()removeKeyListener()MouseEventMouseListeneraddMouseListener()removeMouseListener()MouseMotionListeneraddMouseMotionListener()removeMouseMotionListener()WindowEventWindowListeneraddWindowListener()removeWindowListener()ItemEventItemListeneraddItemListener()removeItemListener()TextEventTextListeneraddTextListener()removeTextListener()事件與監(jiān)聽器對照表監(jiān)聽器接口接口中的函數(shù)ActionListeneractionPerformedAdjustmentListeneradjustmentValueChangedComponentListenercomponentHidden,componentShown,componentMoved,componentResizedContainerListenercomponentAdded,componentRemovedFocusListenerfocusGained,focusLostKeyListenerkeyPressed,keyReleased,keyTypedMouseListenermouseClicked,mouseEntered,mouseExited,mousePressed,mouseReleasedMouseMotionListenermouseDragged,mouseMovedWindowListenerwindowOpened,windowClosing,windowClosed,windowActivated,windowDeactivated,windowIconified,windowDeiconifiedItemListeneritemStateChangedTextListenertextValueChanged標簽(Label)創(chuàng)建標簽
Label
prompt
=
newLabel(“你好”);常用方法
getText()setText(Strings)
if(prompt.getText()==“你好”)
prompt.setText(“再見”);產(chǎn)生事件
標簽不能接收用戶輸入,所以不能引發(fā)事件。按鈕(Button)創(chuàng)建按鈕
Button
btn=
newButton(“操作”);常用方法
getLabel()setLabel(Strings)
Strings=btn.getLabel();btn.setLabel(“你好”);產(chǎn)生事件
單擊按鈕引發(fā)動作事件ActionEvent
對應(yīng)的監(jiān)聽接口是ActionListener
文本框(TextField)P131創(chuàng)建文本框
TextFieldtxt=newTextField();TextFieldtxt=newTextField(“hello”);TextFieldtxt=newTextField(10);TextFieldtxt=newTextField(“hel
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 操作系統(tǒng)課課程設(shè)計 beep
- 2024年建筑安裝工程監(jiān)理服務(wù)合同3篇
- 二年級數(shù)學(上)計算題專項練習
- 2024年標準個人房產(chǎn)抵押借款協(xié)議樣本版
- ug木玩具車課程設(shè)計
- 廣告創(chuàng)意與商業(yè)價值的結(jié)合考核試卷
- 幼兒研學室內(nèi)課程設(shè)計
- 文字的演變課程設(shè)計理念
- 懸架課程設(shè)計目的
- 托班洗玩具課程設(shè)計
- 北京市房屋建筑和市政基礎(chǔ)設(shè)施工程危險性較大的分部分項工程安全管理實施細則
- 廣東省春季高考(學考)必背古詩文14篇目
- 田徑跨欄跑及體能練習教案
- GB/T 18029.3-2008輪椅車第3部分:制動器的測定
- GB/T 11337-2004平面度誤差檢測
- 法商產(chǎn)說會私人財富管理理念支持傳承規(guī)劃課件
- 2023年鹽城市大數(shù)據(jù)集團有限公司招聘筆試題庫及答案解析
- 形式發(fā)票-范本
- 分布滯后模型
- 國開電大《職業(yè)素質(zhì)》形考任務(wù)一二三答案
- DB31T 685-2019 養(yǎng)老機構(gòu)設(shè)施與服務(wù)要求
評論
0/150
提交評論