C++ MFC单选按钮Radio简单用法使用

创建单选框Radio ,ID号IDC_RADIO1

1、获取单选框内容

int RadioState = ((CButton *)GetDlgItem(IDC_RADIO1))->GetCheck();//返回1表示选上,0表示没选上

 

2、默认值设置 在初始化中添加

((CButton *)GetDlgItem(IDC_RADIO1))->SetCheck(TRUE);//选上

((CButton *)GetDlgItem(IDC_RADIO1))->SetCheck(FLASE);//不选

 

你可能感兴趣的:(C++)