Width 与 ActualWidth 的区别
WPF | 区别 | 备注 |
---|---|---|
Width | 控件宽度,可在XAML或程序中设置 | 若没有设置,值为NaN。 若设置为auto,等同于 ActualWidth |
ActualWidth | 控件Render渲染后的实际宽度,控件Render之前,它的值为0 | 只读属性,根据实际的渲染过程,此值可能会晚于Width的值更新 |
WPF | 区别 | 备注 |
---|---|---|
Width | 控件宽度,可在XAML或程序中设置 | 若没有设置,值为NaN。 若设置为auto,等同于 ActualWidth |
ActualWidth | 控件Render渲染后的实际宽度,控件Render之前,它的值为0 | 只读属性,根据实际的渲染过程,此值可能会晚于Width的值更新 |