C#,WinCE Listview:单击列表视图项时打开表单
我只是想问单击列表视图项时打开新表单的最佳方式是什么? 现在,我只使用 ShowDialog()。
谢谢! :)
I just want to ask what is the best way to open a new form when a list view item is clicked?
Right now, I'm just using ShowDialog().
Thanks! :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 WinCE 中,使用 ShowDialog 是打开新窗体的最佳方式,因为调用的模式性质意味着窗体的堆叠(z 顺序)已为您处理。您可以使用
Show
,但是您必须自己管理表单(即哪一个位于顶部)。In WinCE, using
ShowDialog
is the best way to open a new form, since the call's modal nature means the stacking of forms (z-order) is handled for you. You could useShow
, but then you have to manage your forms (i.e. which one is on top) yourself.