📄 helloworldappui.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 + -