我直接将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网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |
打赏帖 | |
---|---|
【换取逻辑分析仪】自制底板并驱动ArduinoNanoRP2040ConnectLCD扩展板被打赏47分 | |
【分享评测,赢取加热台】RISC-V GCC 内嵌汇编使用被打赏38分 | |
【换取逻辑分析仪】-基于ADI单片机MAX78000的简易MP3音乐播放器被打赏48分 | |
我想要一部加热台+树莓派PICO驱动AHT10被打赏38分 | |
【换取逻辑分析仪】-硬件SPI驱动OLED屏幕被打赏36分 | |
换逻辑分析仪+上下拉与多路选择器被打赏29分 | |
Let'sdo第3期任务合集被打赏50分 | |
换逻辑分析仪+Verilog三态门被打赏27分 | |
换逻辑分析仪+Verilog多输出门被打赏24分 | |
【分享评测,赢取加热台】使用8051单片机驱动WS2812被打赏40分 |