⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 helloworldappui.cpp

📁 这个例子描述了如何隐蔽的发送短信
💻 CPP
字号:
// HelloWorldAppUi.cpp
//
// ?Symbian Software Ltd 2005. All rights reserved.
//

#include "HelloWorldAppUi.h"
#include "HelloWorldView.h"

/**
2nd stage construction of the App UI.
Create view and add it to the framework.
The framework will take over the ownership.
*/
void CHelloWorldAppUi::ConstructL()
	{
	// Calls BaseConstructL that initiate the App UI.
	BaseConstructL();

	// Create the view and add it to the framework
	CHelloWorldView* helloWorldView = CHelloWorldView::NewLC(*this);
	AddViewL(*helloWorldView);
	CleanupStack::Pop(helloWorldView);
	}

⌨️ 快捷键说明

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