在属性对话框里设置IDC_RADIO1,IDC_RADIO3,IDC_RADIO5为GROUP,并且他们每一组的TAB顺谢相连,然后给IDC_RADIO1,IDC_RADIO3,IDC_RADIO5分别添加成员变量
对一组单选radio button控件来说,只需要对该组的第一个单选按钮(IDC-RaDIO1)设置Group属性就可以了。如果不Group属性,就无法添加对应的成员变量。然后添加相应的单击事件。 控制可以参考一下程序: void CAddpointDlg::OnRadio2() { // TODO: Add your control notification handler code here m_radio1=1; Invalidate(); }
void CAddpointDlg::OnRadio1() { // TODO: Add your control notification handler code here m_radio1=0; Invalidate(); }
|
文章评论(0条评论)
登录后参与讨论