看好了,不是MFC工程,是VC工程,MFC的API和标准win32API还是不一样的,网上很多都是这种方法:
((CButton *)GetDlgItem(IDC_RADIO1))->SetCheck(TRUE); //RadioButton选上
但是在wince平台上不行,只能使用如下方法(#include <windowsx.h>):
Button_SetCheck(GetDlgItem(hwnd,IDC_RADIO1) , BST_CHECKED); //A macro from windowsx.h
wince 6.0 VC工程 RadioButton的使用,布布扣,bubuko.com
原文地址:http://blog.csdn.net/code_style/article/details/27200077