如何避免.net winforms任务栏闪烁?

发布于 2024-12-01 10:29:39 字数 109 浏览 0 评论 0原文

我正在使用正常的 Form2.Show() 和 From1.Hide() 将 Form1 导航到 Form2。 应用程序按钮在导航时消失并出现在任务栏上,就像闪烁一样。

如何避免这种闪烁?

i am using normal Form2.Show() and From1.Hide() to navigate the Form1 to Form2.
Application button is disappearing and appearing on the task bar while navigating just like flickering.

How to avoid this flickering?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

自此以后,行同陌路 2024-12-08 10:29:39

你的做法是错误的。您应该有一个将显示在任务栏中的主窗体。所有子表单都应设置 ShowInTaskBar = false。每当单击任务栏上的按钮时,应用程序应激活/最小化当前可见的子项。这样您就不会看到任务栏中的按钮发生变化。但就我个人而言,我没有看到当前闪烁有任何问题,这是默认情况下的,没有任何问题。

Your approach is wrong. You should have one main form which will be showing in taskbar. And all child forms should be set ShowInTaskBar = false. When ever, button on taskbar is clicked, application should activate / minimize the current visible child. This way you wont see button changing in taskbar. But personally I dont see any issue with current flickering, it is by default and there is nothing wrong with it.

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