C#,WinCE Listview:单击列表视图项时打开表单

发布于 2024-10-11 19:40:41 字数 71 浏览 5 评论 0原文

我只是想问单击列表视图项时打开新表单的最佳方式是什么? 现在,我只使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愛上了 2024-10-18 19:40:41

在 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 use Show, but then you have to manage your forms (i.e. which one is on top) yourself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文