我对ActualWidth
或ActualHeight
的工作方式或计算方式感到困惑。
<Ellipse Height="30" Width="30" Name="rightHand" Visibility="Collapsed">
<Ellipse.Fill>
<ImageBrush ImageSource="Images/Hand.png" />
</Ellipse.Fill>
</Ellipse>
当我使用上面的代码时,
ActualWidth
和ActualHeight
得到30。但是当我以编程方式定义一个Ellipse时,即使我定义了(max)height和(max)width属性,ActualWidth
和ActualHeight
都为0-我不知道它怎么可能为0? 最佳答案
ActualWidth
和ActualHeight
是在调用Measure
和Arrange
之后计算的。
WPF的布局系统在将控件插入可视树后自动调用它们(在DispatcherPriority.Render
恕我直言,这意味着它们将排队等待执行,并且结果将不会立即可用)。
您可以通过在DispatcherPriority.Background
上排队一个操作或手动调用方法来等待它们变得可用。
调度程序变体的示例:
Ellipse ellipse = new Ellipse();
ellipse.Width = 150;
ellipse.Height = 300;
this.grid.Children.Add(ellipse);
this.Dispatcher.BeginInvoke(DispatcherPriority.Background, new Action(() =>
{
MessageBox.Show(String.Format("{0}x{1}", ellipse.ActualWidth, ellipse.ActualHeight));
}));
显式调用的示例:
Ellipse ellipse = new Ellipse();
ellipse.Width = 150;
ellipse.Height = 300;
ellipse.Measure(new Size(1000, 1000));
ellipse.Arrange(new Rect(0, 0, 1000, 1000));
MessageBox.Show(String.Format("{0}x{1}", ellipse.ActualWidth, ellipse.ActualHeight));