如何从 Symbian 中的 CCoeControl 对象切换到另一个本地视图
我的 GUI 应用程序有两个视图,第一个视图有一个 ListBox 控件 - 派生自 CCoeControl - 我想从这个对象切换到第二个视图,我该怎么做?
换句话说,当用户单击 ListBox Item ...时,会出现第二个视图。
My GUI application has two views, First view has a ListBox control - Derived from CCoeControl - and from this object I want to switch to the second view, How can I do this ?
In other words, When user click ListBox Item ...the second view appears.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的“视图”源自 CAknView。
此链接中的代码
也发现这些链接非常有用。获取指向 AppUI 的指针
获取指向视图的指针
编辑:
Assuming that your 'views' are derived from CAknView.
Code From this link
Also find these links very useful.Getting a pointer to AppUI
Getting a Pointer to a View
Edit :