Symbian C++ - 删除或隐藏组件(即CEikLabel)
看似简单的问题,但我无法解决。
我想在某个时刻隐藏 CEikLabel。 我想要一个像..
myLabel->SetVisible(EFalse);
或..这样
myLabel->RemoveFromView();
的函数,我意识到我可以使用 myLabel->SetTextL(_L("")); 但这不是我想要做的。
谢谢 :)
Seemingly a simple enough question, but I cannot work it out.
I want to hide a CEikLabel at a certain point. I want a function like..
myLabel->SetVisible(EFalse);
or..
myLabel->RemoveFromView();
I realise I could just use myLabel->SetTextL(_L(""));
but that is not what I want to do.
Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样 MakeVisible(TBool aVisible);
另请参阅Symbian 论坛中的相关内容
What about MakeVisible(TBool aVisible);
Also read about it in Symbian forum