[问题] radio

楼主: GooLoo (平凡)   2016-01-16 11:08:45
开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
VC6
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
问题(Question):
问题1:Radio假设有Radio1,Radio2,Radio3
GetCheckedRadioButton参数中写Frist Button与Last Button
意思是参数要写1跟3 如: GetCheckedRadioButton(IDC_Radio1,IDC_Radio3)?
而不是GetCheckedRadioButton(IDC_Radio1,IDC_Radio2,IDC_Radio3)?
因为我写123会错, 写13就不会, 且功能是对的.
问题2:
假设: 我有2个group 135 246 2个都要单选
程式如下, 结果还是1个group,没有2个, 所以我对first与last不太懂怎么用
2个GROUP该怎么写
喂入的资料(Input):
预期的正确结果(Expected Output):
2组 3选1
错误结果(Wrong Output):
1组 6选1
程式码(Code):(请善用置底文网页, 记得排版)
UINT nRadio1=GetCheckedRadioButton(IDC_RADIO1,IDC_RADIO5);
UINT nRadio2=GetCheckedRadioButton(IDC_RADIO2,IDC_RADIO6);
switch(nRadio1){
case IDC_RADIO1:
MessageBox("1");
break;
case IDC_RADIO3:
MessageBox("3");
break;
case IDC_RADIO5:
MessageBox("5");
break;
}
switch(nRadio2){
case IDC_RADIO2:
MessageBox("2");
break;
case IDC_RADIO4:
MessageBox("4");
break;
case IDC_RADIO6:
MessageBox("6");
break;
}
补充说明(Supplement):
作者: TobyH4cker (Toby (我要当好人))   2016-01-16 12:06:00
要放在GroupBox吧还有一个叫做Group propertyhttps://msdn.microsoft.com/en-us/library/hab12t9w

Links booklink

Contact Us: admin [ a t ] ucptt.com