7.3 動(dòng)態(tài)創(chuàng)建按鈕
參見MSDN,CButton的Create函數(shù)。
01 CButton myButton1, myButton2, myButton3, myButton4;
02 // Create a push button.
03 myButton1.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_PUSHBUTTON,
04 CRect(10,10,100,30), this, 1);//當(dāng)前窗口
05 // Create a radio button.
06 myButton2.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_RADIOBUTTON,
07 CRect(10,40,100,70), this, 2); //當(dāng)前窗口
08 // Create an auto 3-state button.
09 myButton3.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_AUTO3STATE,
10 CRect(10,70,100,100), GetParent( ), 3); //父窗口
11 // Create an auto check box.
12 myButton4.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_AUTOCHECKBOX,
13 CRect(10,100,100,130), GetParent( ), 4); //父窗口
7.4 訪問控件
訪問控件的方式很多,按照書上的例子簡(jiǎn)單的抄了幾種,感覺這三種最簡(jiǎn)單,使用上也方便些。
01 void CTestDlg::OnButton1()
02 {
03 // TODO: Add your control notification handler code here
04 int num1,num2,num3;
05 //char buf1[10],buf2[10],buf3[10];1,2
06 //GetDlgItem(IDC_EDIT1)->GetWindowText(buf1,10);1
07 //GetDlgItem(IDC_EDIT2)->GetWindowText(buf2,10);1
08 //GetDlgItemText(IDC_EDIT1,buf1,10);2
09 //GetDlgItemText(IDC_EDIT2,buf2,10);2
10
11 //num1=atoi(buf1);1,2
12 //num2=atoi(buf2);1,2
13 num1=GetDlgItemInt(IDC_EDIT1);
14 num2=GetDlgItemInt(IDC_EDIT2);
15 num3=num1+num2;
16 //itoa(num3,buf3,10);1,2
17
18 //GetDlgItem(IDC_EDIT3)->SetWindowText(buf3);1
19 //SetDlgItemText(IDC_EDIT3,buf3);2
20 SetDlgItemInt(IDC_EDIT3,num3);
21 }
相關(guān)推薦:
2012年計(jì)算機(jī)等考四級(jí)數(shù)據(jù)庫(kù)工程師備考筆記匯總
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |