独自の Visual State Manager を持つ 6 つの異なるオブジェクトがあります。各オブジェクトの Focused 状態は同じです。単一の Focused State Storyboard リソースを定義し、6 つの Focus Visual 状態のそれぞれでそれを参照したいと考えています。これはできますか?これが私のコードです(すべて同じUserControl.Resourcesにあります):
<Storyboard x:Key="FocusedState">
...
</Storyboard>
私の6つのオブジェクトのそれぞれに、次のものがあります。
<VisualStateGroup x:Name="FocusStates">
<VisualState x:Name="Focused" Storyboard="{StaticResource FocusedState}"/>
...
プロジェクトを実行すると、次のエラーが表示されます。
メッセージ: 属性 {StaticResource FocusedState} の値が範囲外です。