我直接将SDK中的代码添加到Hello World!中:
#include "vmwin.h"
int main_winproc(VMINT message, VMINT param)
{
switch(message)
{
case VM_WM_RIGHT_SOFTKEY_CLICK:
vm_close_window(main_window);
vm_exit_app();
break;
}
return 1;
}
void vm_main(void)
{
layer_hdl[0] = -1;
VMWCHAR s[100];
struct component_base_t *comp;
//窗口系统在使用前必须初始化,vm_int_window_system()函数可以调用多次,系统会保证初始化动作的唯一性
vm_init_window_system();
//创建主窗口
if((main_window=vm_create_window(1,0,0,240,320))==NULL)
{
//嵌入系统内存分配不一定都是成功的,因此对于重要组件创建失败的判断必须有,否则系统很容易崩溃
vm_exit_app();
}
//设置窗口外观
vm_set_window_style(main_window,WS_HAS_TITLE|WS_HAS_SKBAR);
vm_set_window_title(main_window,vm_ucs2_string("窗口显示"));
//设置窗口右键
if((comp=vm_set_window_softkey(main_window,FALSE,3,vm_ucs2_string("退出")))==NULL)
{
vm_close_window(main_window);
vm_exit_app();
}
//在屏幕中创建文字标签,用于显示hello world!文字
vm_gb2312_to_ucs2(s,100,"hello,world!");
if((label=vm_create_label(main_window,1,4,vm_graphic_get_screen_height()/2,232,20,s))==NULL)
{
vm_close_window(main_window);
vm_exit_app() ;
}
//设置标签颜色
vm_set_component_color(label,0xFFFFFF);
vm_set_component_bgcolor(label,-1);
//设置标签居中对齐
vm_set_label_alignment(label,ALIGN_CENTER);
//注册窗口消息函数
vm_reg_winproc(main_window,main_winproc);
//显示窗口
vm_active_window(main_window);
}
出现下面等低级错误:
error C2065: 'main_window' : undeclared identifier
error C2275: 'VMWCHAR' : illegal use of this type as an expression
error C2146: syntax error : missing ';' before identifier 's'
error C2109: subscript requires array or pointer type
error C2065: 'comp' : undeclared identifier
我觉得,像第一二个错误应该是某个文件或者设置出现问题了,但是又找不到具体哪里没设置好,求助。谢谢。。。
还有,关于创建窗口的例程还有其他的么?
求助:vre3.0中有窗口版操作的Demo么?
关键词: 求助 vre3.0 中有 窗口 操作 window
回复
有奖活动 | |
---|---|
【有奖活动】分享技术经验,兑换京东卡 | |
话不多说,快进群! | |
请大声喊出:我要开发板! | |
【有奖活动】EEPW网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |
打赏帖 | |
---|---|
【笔记】生成报错synthdesignERROR被打赏50分 | |
【STM32H7S78-DK评测】LTDC+DMA2D驱动RGBLCD屏幕被打赏50分 | |
【STM32H7S78-DK评测】Coremark基准测试被打赏50分 | |
【STM32H7S78-DK评测】浮点数计算性能测试被打赏50分 | |
【STM32H7S78-DK评测】Execute in place(XIP)模式学习笔记被打赏50分 | |
每周了解几个硬件知识+buckboost电路(五)被打赏10分 | |
【换取逻辑分析仪】RA8 PMU 模块功能寄存器功能说明被打赏20分 | |
野火启明6M5适配SPI被打赏20分 | |
NUCLEO-U083RC学习历程2-串口输出测试被打赏20分 | |
【笔记】STM32CUBEIDE的Noruletomaketarget编译问题被打赏50分 |