AppView::ConstructL(const TRect& aRect)
{
// Create a window for this application view
CreateWindowL();
//在这里添加控件
//如果简单,可以直接写在这里
//如果复杂,可以单独创建一个函数来创建控件
iLabel = new EikLabel();
// Set the windows size
SetRect(aRect);
// Activate the window, which makes it ready to be drawn
ActivateL();
}
阅读(407) | 评论(0) | 转发(0) |