MFC radio button如何默认选中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MFC radio button如何默认选中相关的知识,希望对你有一定的参考价值。

比如现在有两个 radio button,角度和弧度,我想让他默认选择弧度,怎么做?

参考技术A 到Resource View 里面 把 弧度的属性Group设置为True, 角度为False,初始化OnInitDialog的时候把弧度的radio button SetCheck()下
BOOL CXXXXDlg::OnInitDialog()

CDialog::OnInitDialog();
// TODO: Add extra initialization here
m_radiohudu.SetCheck(TRUE);
m_radiojiaodu.SetCheck(FALSE);
return TRUE;
// return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
本回答被提问者和网友采纳
参考技术B CButton myButton;
myButton.SetCheck(BST_CHECKED);

以上是关于MFC radio button如何默认选中的主要内容,如果未能解决你的问题,请参考以下文章

VS2010 radio button 起始默认选中

关于mfc中radio button

在一组单选按钮中怎样设置默认选项呢/在哪里设置呢?

MFC的单选按钮、复选框问题

MFC窗口应用程序中如何向Group box中添加多个radio button?

如何根据不同的用户角色默认选中单选按钮?