wince 6.0 VC工程 RadioButton的使用
时间:2014-06-05 01:03:12
收藏:0
阅读:403
看好了,不是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
评论(0)