gpt4 book ai didi

c# - InvalidateVisual 是否以惰性方式工作?

转载 作者:行者123 更新时间:2023-11-30 16:11:10 25 4
gpt4 key购买 nike

如果我在我的自定义 WPF 控件中调用 InvalidateVisual,实际的布局评估和呈现过程何时发生?

立即或 - 与在 WinForms 中类似 - 当我完成我的处理时?

最佳答案

在线帮助回答了您的问题:

在线帮助 InvalidateVisual :

This method calls InvalidateArrange internally.

在线帮助 InvalidateArrange :

Invalidates the arrange state (layout) for the element. After the invalidation, the element will have its layout updated, which will occur asynchronously unless subsequently forced by UpdateLayout.

换句话说:InvalidateVisual 不会立即生效;它会等到您当前的代码完成(除非您调用了 UpdateLayout )。

你也可以看看微软的引用来源:http://referencesource.microsoft.com/#q=UIElement.InvalidateArrange .您会看到 InvalidateArrange() 没有调用任何阻塞代码;它立即返回。

关于c# - InvalidateVisual 是否以惰性方式工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24651834/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com