我希望该Margin
属性引用中心UIElement
而不是左上角。这样,当我更改它的宽度/高度时,UIElement
它会保持在同一个位置。
有没有办法配置这种行为,或者我必须依靠 Binding 来进行调整?
谢谢。
例如,如果我更改Width/Height
以下矩形的 ,它的中心会移动。
<Grid>
<Rectangle Fill="#FF991C1C" Width="10" Height="40" HorizontalAlignment="Left" Margin="90,161,0,0" VerticalAlignment="Top"/>
</Grid>