我对如何ActualWidth
或ActualHeight
如何工作或如何计算有点困惑。
<Ellipse Height="30" Width="30" Name="rightHand" Visibility="Collapsed">
<Ellipse.Fill>
<ImageBrush ImageSource="Images/Hand.png" />
</Ellipse.Fill>
</Ellipse>
当我使用上面的代码时,我得到 30ActualWidth
和ActualHeight
. 但是当我以编程方式定义椭圆时,ActualWidth
andActualHeight
为 0,即使我定义了 (max)height 和 (max)width 属性 - 我不明白它怎么可能是 0?