0

是否可以在 xaml 中使用 VisualStateManager 设置控件的最大宽度?当我尝试设置控件的最大宽度时,在混合中出现以下异常:

ArgumentException:属性 MaxWidth 的属性值无效。

xml 是

<DoubleAnimation Duration="0" To="1000" Storyboard.TargetProperty="(FrameworkElement.MaxWidth)" Storyboard.TargetName="AbcControl" d:IsOptimized="True"/>
4

1 回答 1

0

遵循xaml使其工作..虽然我不得不手动编写这些行而不是自动混合生成它们

<ObjectAnimationUsingKeyFrames Storyboard.TargetName="AbcControl" Storyboard.TargetProperty="(FrameworkElement.MaxWidth)"> <DiscreteObjectKeyFrame KeyTime="0" Value="1000" /> </ObjectAnimationUsingKeyFrames>
于 2013-10-01T11:23:37.127 回答