helloblankappview.cpp
来自「Symbian OS C++ 手机应用开发(第一卷)部分事例代码」· C++ 代码 · 共 19 行
CPP
19 行
/* Copyright (c) 2003, Symbian Software Ltd. All rights reserved */
#include <coemain.h>
#include "HelloBlankAppView.h"
void CBlankAppView::ConstructL(const TRect& aRect)
{
// Create a window for this application view
CreateWindowL();
// Set the window's size
SetRect(aRect);
// Make it a Blank control
SetBlank();
// Activate the window, which makes it ready to be drawn
ActivateL();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?