金牌会员
- 积分
- 1474
- 金钱
- 1474
- 注册时间
- 2018-11-15
- 在线时间
- 286 小时
|
发表于 2019-8-29 09:30:01
|
显示全部楼层
本帖最后由 渡渡 于 2019-8-29 09:32 编辑
4、static const GUI_WIDGET_CREATE_INFO _aDialogCreateMain[] = {}
3、static void _cbDialogMain(WM_MESSAGE * pMsg) {}
2、//创建窗口
WM_HWIN CreateFrameDesktop(void) {
WM_HWIN hWin;
hWin = GUI_CreateDialogBox(_aDialogCreateMain, GUI_COUNTOF(_aDialogCreateMain), _cbDialogMain, WM_HBKWIN, 0, 0);
return hWin;
}
1、 //调用接口
void menu_desktop(void)
{
WM_HWIN hWin;
printf("SoftwareVersion:%04d\r\n", SoftwareVersion);
hWin = CreateFrameDesktop();
} |
|