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

wince 6.0 VC工程 RadioButton的使用,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!