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如何默认选中的主要内容,如果未能解决你的问题,请参考以下文章