main.cpp

来自「本系统用于盘点」· C++ 代码 · 共 29 行

CPP
29
字号
#include <ubase.h>
#include "My850Page.h"


void hello(void);

void hello(void)
{
	// TODO: Add code here ...
	
	CMy850Page *page = new CMy850Page;
	page->Create(NULL, "Hello world");
	page->DoModal();
	delete page;
}

int main(void)
{
	uBaseSetLang(UBASE_LANG_CHS);	//GB2312
//	uBaseSetLang(UBASE_LANG_CHT);	//BIG5
//	uBaseSetLang(UBASE_LANG_ENG);	//ENGLISH

	hello();
	// TODO: Add code here ...

	return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?