是否可以为 Grid.Column 设置动画?
Is it possible to animate the Grid.Column?
我可以制作动画 Grid.Column
属性 吗?我需要在列中移动 <Border>
。
<Storyboard>
<DoubleAnimation Storyboard.TargetProperty="Grid.Column" To="4" Duration="0:0:0.3"/>
</Storyboard>
由于 Grid.Column
是附加的 属性,您必须在 属性 路径中添加括号。
参见PropertyPath for Animation Targets。
<Int32Animation Storyboard.TargetProperty="(Grid.Column)" To="4" Duration="0:0:0.3"/>
我可以制作动画 Grid.Column
属性 吗?我需要在列中移动 <Border>
。
<Storyboard>
<DoubleAnimation Storyboard.TargetProperty="Grid.Column" To="4" Duration="0:0:0.3"/>
</Storyboard>
由于 Grid.Column
是附加的 属性,您必须在 属性 路径中添加括号。
参见PropertyPath for Animation Targets。
<Int32Animation Storyboard.TargetProperty="(Grid.Column)" To="4" Duration="0:0:0.3"/>