如何避免.net winforms任务栏闪烁?
我正在使用正常的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的做法是错误的。您应该有一个将显示在任务栏中的主窗体。所有子表单都应设置 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.