Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3349474
  • 博文数量: 1450
  • 博客积分: 11163
  • 博客等级: 上将
  • 技术积分: 11101
  • 用 户 组: 普通用户
  • 注册时间: 2005-07-25 14:40
文章分类

全部博文(1450)

文章存档

2017年(5)

2014年(2)

2013年(3)

2012年(35)

2011年(39)

2010年(88)

2009年(395)

2008年(382)

2007年(241)

2006年(246)

2005年(14)

分类: C/C++

2009-07-01 16:42:31

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();
}
阅读(500) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~