ストーリーボードがあり、添付プロパティVisualStateUtility.InitialStateを設定したいと思います。さまざまな組み合わせを試しましたが、プロパティが解決されません。
次のエラーが発生します:TargetProperty(VisualStateUtility.InitialState)を解決できません
ストーリーボードでカスタム添付プロパティの値を設定するにはどうすればよいですか?
<ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="(Fully.Qualified.Namespace.VisualStateUtility.InitialState)" Storyboard.TargetName="ExpanderButton">
public static string GetInitialState(DependencyObject obj)
{
return (string)obj.GetValue(InitialStateProperty);
}
public static void SetInitialState(DependencyObject obj, string value)
{
obj.SetValue(InitialStateProperty, value);
}
// Using a DependencyProperty as the backing store for InitialState. This enables animation, styling, binding, etc...
public static readonly DependencyProperty InitialStateProperty =
DependencyProperty.RegisterAttached("InitialState", typeof(string), typeof(VisualStateUtility), new PropertyMetadata(null,OnInitialStatePropertyChanged));