mfc 单选按钮默认选中
时间: 2023-08-16 09:08:42 浏览: 240
MFC单选按钮
4星 · 用户满意度95%
在 MFC 中,单选按钮默认选中可以通过设置对应的控件属性来实现。首先,选中单选按钮控件,然后在属性窗口中找到 Checked 属性,将其设置为 True 即可。此外,还可以在对话框的 OnInitDialog 函数中通过代码来设置默认选中的单选按钮,具体代码如下:
```
// 假设 IDC_RADIO1 和 IDC_RADIO2 分别是两个单选按钮的 ID
// 将 IDC_RADIO1 设置为默认选中
CButton* pBtn = (CButton*)GetDlgItem(IDC_RADIO1);
pBtn->SetCheck(TRUE);
// 将 IDC_RADIO2 设置为默认选中
CButton* pBtn = (CButton*)GetDlgItem(IDC_RADIO2);
pBtn->SetCheck(TRUE);
```
需要注意的是,如果在对话框的 OnInitDialog 函数中进行设置,则需要在调用基类的 OnInitDialog 函数之前进行设置。
阅读全文