是否可以设置Grid.Column的动画?

时间:2018-11-16 07:15:29

标签: .net wpf xaml attached-properties

我有一个Grid.Column属性动画吗?我需要在列中移动<Border>

<Storyboard>
       <DoubleAnimation Storyboard.TargetProperty="Grid.Column" To="4" Duration="0:0:0.3"/>  
</Storyboard>

1 个答案:

答案 0 :(得分:5)

由于Grid.Column是附加属性,因此必须在属性路径中添加括号。

请参见PropertyPath for Animation Targets

<Int32Animation Storyboard.TargetProperty="(Grid.Column)" To="4" Duration="0:0:0.3"/>