SetValue
使用with(例如)Canvas.LeftProperty
和Margin
Property之间有什么区别?
为了更清楚:
<Canvas>
<Rectangle x:Name="rect">
</Canvas>
是
rect.SetValue(Canvas.LeftProperty, 10)
相当于
rect.Margin = new Thickness(10, 0, 0, 0)
或不?