このコードを書いて例外があります:バックグラウンドプロパティはパス '(0)(1)'の依存オブジェクトを指しません。バックグラウンドプロパティは、パス '(0)。(1)'の依存関係オブジェクトを指していません。
私はこの問題をフォーラムの他の投稿で見ましたが、解決策を見つけられませんでした。
<WrapPanel.Style>
<Style>
<Style.Triggers>
<Trigger Property "WrapPanel.Visibility" Value="Visible">
<Trigger.EnterActions>
<BeginStoryboard HandoffBehavior="Compose">
<Storyboard RepeatBehavior="Forever" AutoReverse="True">
<ColorAnimation
Storyboard.TargetProperty="(WrapPanel.Background).(SolidColorBrush.Color)"
Duration="00:00:01" To="Red"/>
</Storyboard>
</BeginStoryboard>
</Trigger.EnterActions>
</Trigger>
</Style.Triggers>
</Style>
</WrapPanel.Style>
これに関するヘルプはありますか? ありがとう
タンクス!その仕事 – Maya