wince 6.0 VC工程 RadioButton的使用

2020-12-13 02:15

阅读:326

标签:c   style   a   get   使用   set   

看好了,不是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的使用,搜素材,soscw.com

wince 6.0 VC工程 RadioButton的使用

标签:c   style   a   get   使用   set   

原文地址:http://blog.csdn.net/code_style/article/details/27200077


评论


亲,登录后才可以留言!