版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、mfc課程設(shè)計(jì)課題名稱:調(diào)整對(duì)話框背景顏色專業(yè)班級(jí):1020562班學(xué)生學(xué)號(hào):學(xué)生姓名: 指導(dǎo)教師: 提交時(shí)間:2011年12月10日目錄1.設(shè)計(jì)描述31.1課題背景31.2功能描述32.設(shè)計(jì)分析42.1應(yīng)用的類42.2成員函數(shù)43.源代碼及圖形64.設(shè)計(jì)總結(jié)174.1個(gè)人心得174.2參考文獻(xiàn)171.設(shè)計(jì)描述1.1課題背景 本課題主要是在為了讓自己更加了解在mfc中框架類中的各種函數(shù)的應(yīng)用。本程序是在vc6.0中使用appwizard創(chuàng)建基于對(duì)話框的應(yīng)用程序。1.2功能描述本程序能夠改變對(duì)話框的背景顏色。對(duì)話框中有滾動(dòng)條和滑動(dòng)塊,通過調(diào)節(jié)滾動(dòng)條或滑動(dòng)塊來改變對(duì)話框的背景顏色。除此以外,該對(duì)話
2、框可以最小化,最大化功能。點(diǎn)擊關(guān)閉按鈕時(shí),會(huì)出現(xiàn)提示對(duì)話框,提示對(duì)話框中有“退出應(yīng)用程序”,“返回到托盤”,“不再提示”選擇按鈕供你選擇。另外托盤圖標(biāo)是閃動(dòng)變換的,托盤圖標(biāo)還可以打開子菜單。最小化:最大化:2.設(shè)計(jì)分析本程序用到了一些基于對(duì)話框的類,實(shí)現(xiàn)對(duì)話框的各種功能2.1應(yīng)用的類圖2.1 classview2.2成員函數(shù)程序里的成員函數(shù)如下1、bool cwlhdlg:oninitdialog()2、void cwlhdlg:onhscroll(uint nsbcode, uint npos, cscrollbar* pscrollbar) 3、hbrush cwlhdlg:onctlco
3、lor(cdc* pdc, cwnd* pwnd, uint nctlcolor) 4、bool cwlhdlg:addtray(hwnd hwnd, lpstr lpsztip)/添加圖標(biāo)到托盤5、bool ctestdlg:removetray(hwnd hwnd)/刪除托盤中的圖標(biāo)6、bool ctestdlg:modifytray(hwnd hwnd,uint uid)/修改托盤中的圖標(biāo)7、void cwlhdlg:ontimer(uint nidevent) /更換圖標(biāo)8、void ctestdlg:ontraynotify(wparam wparam, lparam lparam)
4、9、void ctestdlg:ondestroy()/結(jié)束圖標(biāo)更換 10、void ctestdlg:onopen()/打開子菜單項(xiàng) 11、void ctestdlg:onexit()/退出子菜單項(xiàng)12、void cwlhdlg:onabout() /關(guān)于子菜單13、void cwlhdlg:onclose() /關(guān)閉背景對(duì)話框14、void cwlhdlg:inquiry()/詢問對(duì)話框各個(gè)類的成員函數(shù)和數(shù)據(jù)成員如圖2.2-1,圖2.2-2所示 圖2.2-1 圖2.2-23.源代碼及圖形bool cwlhdlg:oninitdialog()cdialog:oninitdialog();/
5、add about. menu item to system menu./ idm_aboutbox must be in the system command range.assert(idm_aboutbox & 0xfff0) = idm_aboutbox);assert(idm_aboutbox appendmenu(mf_separator);psysmenu-appendmenu(mf_string, idm_aboutbox, straboutmenu);/ set the icon for this dialog. the framework does this automat
6、ically/ when the applications main window is not a dialogseticon(m_hicon, true);/ set big iconseticon(m_hicon, false);/ set small icon/ todo: add extra initialization herem_scrollred.setscrollrange(0, 255);m_sliderblue.setrange(0, 255);m_slidergreen.setrange(0, 255);m_nblue = m_ngreen = m_nredvalue
7、= 192;updatedata( false );m_scrollred.setscrollpos(m_nredvalue); setwindowtext(調(diào)整對(duì)話框背景顏色);return true; / return true unless you set the focus to a controlvoid cwlhdlg:onhscroll(uint nsbcode, uint npos, cscrollbar* pscrollbar) / todo: add your message handler code here and/or call defaultint nid = ps
8、crollbar-getdlgctrlid();/ 獲取對(duì)話框中控件id值if (nid = idc_scrollbar_red)/ 若是滾動(dòng)條產(chǎn)生的水平滾動(dòng)消息switch(nsbcode)case sb_lineleft:m_nredvalue-;/ 單擊滾動(dòng)條左邊箭頭break;case sb_lineright:m_nredvalue+;/ 單擊滾動(dòng)條右邊箭頭break;case sb_pageleft:m_nredvalue -= 10;break;case sb_pageright:m_nredvalue += 10;break;case sb_thumbtrack:m_nredv
9、alue = npos;break;if (m_nredvalue255) m_nredvalue = 255;m_scrollred.setscrollpos(m_nredvalue);invalidate();/ 使對(duì)話框無效,強(qiáng)迫系統(tǒng)重繪對(duì)話框cdialog:onhscroll(nsbcode, npos, pscrollbar);hbrush cwlhdlg:onctlcolor(cdc* pdc, cwnd* pwnd, uint nctlcolor) hbrush hbr = cdialog:onctlcolor(pdc, pwnd, nctlcolor);/ todo: chan
10、ge any attributes of the dc here/ todo: return a different brush if the default is not desiredupdatedata(true);colorref color = rgb(m_nredvalue, m_ngreen, m_nblue);m_brush.detach();/ 使畫刷和對(duì)象分離m_brush.createsolidbrush(color);/ 創(chuàng)建顏色畫刷pdc-setbkcolor( color );/ 設(shè)置背景顏色return (hbrush)m_brush;/ 返回畫刷句柄,以便系統(tǒng)使
11、此畫刷繪制對(duì)話框return hbr;以上代碼實(shí)現(xiàn)對(duì)話框背景顏色調(diào)整功能 圖3-1/添加圖標(biāo)到托盤bool cwlhdlg:addtray(hwnd hwnd, lpstr lpsztip)notifyicondata tnid; tnid.cbsize=sizeof(notifyicondata); tnid.hwnd=hwnd; tnid.uflags=nif_message | nif_icon | nif_tip; tnid.ucallbackmessage=wm_icon_notify; tnid.hicon=afxgetapp()-loadicon(idi_icon1); strc
12、py(tnid.sztip,lpsztip); return shell_notifyicon(nim_add, &tnid); 添加圖標(biāo)到托盤如下圖圖3-2圖3-1/刪除托盤中的圖標(biāo)bool ctestdlg:removetray(hwnd hwnd)/刪除托盤中的圖標(biāo) notifyicondata tnid; tnid.cbsize=sizeof(notifyicondata); tnid.hwnd=hwnd; return shell_notifyicon(nim_delete,&tnid);/修改托盤中的圖標(biāo)bool ctestdlg:modifytray(hwnd hwnd,uint
13、 uid)/修改托盤中的圖標(biāo) notifyicondata tnid; tnid.cbsize=sizeof(notifyicondata); tnid.hwnd=hwnd; tnid.uflags=nif_icon; tnid.hicon=afxgetapp()-loadicon(uid); return shell_notifyicon(nim_modify, &tnid);/更換圖標(biāo)void cwlhdlg:ontimer(uint nidevent) /更換圖標(biāo)/ todo: add your message handler code here and/or call defaults
14、taticuint nids=idi_icon1,idi_icon2,idi_icon3,idi_icon4;static int nindex=1;modifytray(m_hwnd,nidsnindex);nindex=+nindex%4;cdialog:ontimer(nidevent);/結(jié)束圖標(biāo)更換void ctestdlg:ondestroy()/結(jié)束圖標(biāo)更換 cdialog:ondestroy();/ todo: add your message handler code herekilltimer(1);removetray(m_hwnd);void ctestdlg:ontr
15、aynotify(wparam wparam, lparam lparam)if(wm_rbuttondown=lparam)cmenu menu;menu.loadmenu(idr_menu1);cpoint point;getcursorpos(&point);/得到鼠標(biāo)位置cmenu *popup=menu.getsubmenu(0);popup-trackpopupmenu(tpm_leftalign|tpm_rightbutton, point.x, point.y, this);return;if(wm_lbuttondown=lparam)showwindow(sw_showno
16、rmal); setforegroundwindow();return;圖3-3/打開子菜單項(xiàng)void ctestdlg:onopen()/打開子菜單項(xiàng) / todo: add your command handler code hereshowwindow(sw_shownormal); setforegroundwindow();/退出子菜單項(xiàng)void ctestdlg:onexit()/退出子菜單項(xiàng)/ todo: add your command handler code herepostquitmessage(0);以上代碼實(shí)現(xiàn)功能如下圖 圖3-4 圖3-5/關(guān)于對(duì)話框void cwl
17、hdlg:onabout() / todo: add your command handler code heremessagebox(wlh制作n2011年12月,關(guān)于,mb_iconexclamation |mb_ok);/關(guān)閉背景對(duì)話框void cwlhdlg:onclose() /關(guān)閉背景對(duì)話框/ todo: add your message handler code here and/or call defaulthkey hkey;if(error_success=regopenkeyex(hkey_local_machine,wlh,0,key_read,&hkey)if(1=n
18、check)if(0=nradio)postquitmessage(0);elseaddtray(m_hwnd,改變背景);showwindow(sw_hide);settimer(1,500,null);elseinquiry();elseinquiry();regclosekey(hkey);/詢問對(duì)話框void cwlhdlg:inquiry()/詢問對(duì)話框cinquiry inq;inq.domodal();/打開詢問對(duì)話框nradio=inq.m_n;if(inq.m_chk)/是否選擇不再提示選框ncheck=1;/標(biāo)志為1elsencheck=0;/標(biāo)志為0if(0=nradio)/選擇直接退出postquitmessage(0);else/選擇返回托盤addtray(m_hwnd,改變背景);showwindow(sw_hide);/隱藏主窗口settimer(1,500,null);所用功能的實(shí)現(xiàn)如下圖運(yùn)行結(jié)果:圖3-6最大化: 圖3-7最小化: 圖3-8點(diǎn)擊運(yùn)行關(guān)閉按鈕: 圖3-9 圖3-10
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(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ì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024年研究生考試考研英語(二204)試卷及答案指導(dǎo)
- 數(shù)控車床違反作業(yè)流程處罰制度
- 代理采購(gòu)業(yè)務(wù)協(xié)議范本2024
- 2024年股權(quán)轉(zhuǎn)讓及權(quán)益變更協(xié)議
- 2024年度中藥材種植種子銷售協(xié)議
- 2024批量門禁設(shè)備購(gòu)銷協(xié)議樣本
- 2024年不動(dòng)產(chǎn)即售協(xié)議模板
- 2024建筑泥水工施工分包協(xié)議范本
- 2024年度砌磚物流服務(wù)協(xié)議條款
- 2023-2024學(xué)年云南省昭通市大關(guān)縣民族中學(xué)高三素質(zhì)班第二次考查數(shù)學(xué)試題
- HJ 1188-2021 核醫(yī)學(xué)輻射防護(hù)與安全要求(標(biāo)準(zhǔn)網(wǎng)-www.biaozhun.org)
- (高清版)DZT 0399-2022 礦山資源儲(chǔ)量管理規(guī)范
- 五年級(jí)上冊(cè)數(shù)學(xué)教學(xué)設(shè)計(jì)-植樹問題 人教版
- 清明節(jié)(節(jié)氣)主題課件
- 家長(zhǎng)會(huì)課件:初一上學(xué)期期中考試后的家長(zhǎng)會(huì)課件
- 人工智能機(jī)器人科普小知識(shí)
- 2024年同等學(xué)力申碩-同等學(xué)力(社會(huì)學(xué))筆試歷年真題薈萃含答案
- VTE護(hù)理預(yù)防新進(jìn)展
- 社區(qū)兒童健康管理案例分析報(bào)告
- 憲法的形成和發(fā)展
- 醫(yī)學(xué)檢驗(yàn)質(zhì)量管理手冊(cè)
評(píng)論
0/150
提交評(píng)論