3,119
社区成员




void CBlankWinAppView::ConstructL(const TRect& aRect)
{
// Create a window for this application view
CreateWindowL();
//SetBlank();
iLabel = new (ELeave) CEikLabel;
iLabel->SetContainerWindowL(*this);
iLabel->SetTextL(_L("aLabel"));
// Set the windows size
SetRect(aRect);
// Activate the window, which makes it ready to be drawn
ActivateL();
}