是否可以防止 WPF 控件重绘?
我必须更新 WPF 控件中的多个子控件。在更新所有子控件之前,我不希望重新绘制控件。
I have to update multiple child controls in a WPF control. I don't want the control redrawn until I have updated all its child controls.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在 UI 线程上进行所有这些更新(通常是这种情况),那么 WPF 框架将完全按照您的要求执行!
要对其进行测试,请创建一个无限循环来不断更新您的控件和子控件。 UI 将因此冻结。
If you are making all these updates on the UI thread (which is typically the case), then the WPF framework will do exactly what you desire!
To test it out, create an infinite loop that continually updates your control and child controls. The UI will freeze up as a result.