radiobox
2020-10-10 本文已影响0人
fffwc
CString str;
if (IsDlgButtonChecked(IDC_RADIO1))
{
//MessageBox(_T("man"));
str = TEXT("man");
}
if (IsDlgButtonChecked(IDC_RADIO2))
{
//MessageBox(_T("man"));
str = TEXT("woman");
}
if (IsDlgButtonChecked(IDC_RADIO3))
{
//MessageBox(_T("man"));
str = TEXT("otherman");
}
MessageBox(str);