Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Grid当应用程序被捕捉时,我有一个调整大小。它必须根据新ActualWidth元素更新动画。但是,当我将此函数绑定到SizeChanged事件时,它似乎在重新绘制快照视图之前触发,并计算前一个ActualWidth.
Grid
ActualWidth
SizeChanged
如何确保我的函数在应用程序在快照后重绘后运行?
当布局更新时,使用该LayoutUpdated事件运行任何代码。使用 bool 设置为 true on SizeChanged,然后再次设置为 false,然后再执行任何操作以确保不会导致循环!
LayoutUpdated