欢迎来到天天文库
浏览记录
ID:35001114
大小:36.00 KB
页数:9页
时间:2019-03-15
《VC6.0常用控件使用方法》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、-------------各类专业好文档,值得你下载,教育,管理,论文,制度,方案手册,应有尽有--------------VC6.0常用控件使用方法www.educity.cn 发布者:zkhenry 来源:网络转载 发布日期:2013年10月29日 *除非特别说明,本文中所用控件变量类型为Control 一般控件可用/不可用 EnableWindow(TRUE); EnableWindow(FALSE); 1、StaticText------------静态控件--类CStatic 取值/赋值(变量类
2、型为Control) m_lbl.GetWindowText(string); m_lbl.SetWindowText(string); 2、EditBox---------------编辑控件--类CEdit 取值/赋值 m_txt.GetWindowText(string); m_txt.SetWindowText(string); 3、CheckBox------------复选控件--类CButton (1)设置选中/未选中 m_chk.SetCheck(BST_CHECKED); m_chk.
3、SetCheck(BST_UNCHECKED); (2)判断是否选中 intnCur=m_chk.GetCheck(); nCur取值为BST_CHECKED/BST_UNCHECKED。-------------各类专业好文档,值得你下载,教育,管理,论文,制度,方案手册,应有尽有---------------------------各类专业好文档,值得你下载,教育,管理,论文,制度,方案手册,应有尽有-------------- 4、RadioBox------------单选控件--类CButton (1)默认选中第
4、一项 m_radio.SetCheck(BST_CHECKED); (2)选中组中任一项 CWnd::CheckRadioButton Selects(addsacheckmarkto)agivenradiobuttoninagroupandclears(removesacheckmarkfrom)allotherradiobuttonsinthegroup. voidCheckRadioButton( intnIDFirstButton, intnIDLastButton, intnIDCheckButton);
5、 Parameters nIDFirstButton Specifiestheintegeridentifierofthefirstradiobuttoninthegroup. nIDLastButton Specifiestheintegeridentifierofthelastradiobuttoninthegroup. nIDCheckButton Specifiestheintegeridentifieroftheradiobuttontobechecked. (3)判断哪一项被选中 CWnd::Ge
6、tCheckedRadioButton RetrievestheIDofthecurrentlycheckedradiobuttoninthespecifiedgroup. intGetCheckedRadioButton( intnIDFirstButton, int-------------各类专业好文档,值得你下载,教育,管理,论文,制度,方案手册,应有尽有---------------------------各类专业好文档,值得你下载,教育,管理,论文,制度,方案手册,应有尽有--------------nIDLastBu
7、tton); Parameters nIDFirstButton Specifiestheintegeridentifierofthefirstradiobuttoninthegroup. nIDLastButton Specifiestheintegeridentifierofthelastradiobuttoninthegroup. ReturnValue IDofthecheckedradiobutton,or0ifnoneisselected. (4)控件变量类型为Value时,可通过给int型变量赋值
8、0、1、2…选中第1、2、3…个选项。 int型变量默认值为-1,是在构造函数中赋的值。 当然也可通过判断int型变量的值,知道哪一个选项被选中。 5、
此文档下载收益归作者所有