ボタンが 1 つあり、ボタンの背景スタイルをLinearGradientBrushで設定します。すべて正常に動作しますが、ボタンを実行してボタンをクリックすると、グラデーションカラーがアニメーションのビットでobボタンを表示しますが、ボタンの背景スタイルのアニメーションには何も書いていません。
ここに私の完全なコードがあります
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<DockPanel>
<Button Content="Button" Height="23" Name="button1" Width="75">
<Button.Background>
<LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
<GradientStop Color="#FFD9EDFF" Offset="0"/>
<GradientStop Color="#FFC0DEFF" Offset="0.445"/>
<GradientStop Color="#FFAFD1F8" Offset="0.53"/>
</LinearGradientBrush>
</Button.Background>
</Button>
</DockPanel>
</Window>
ユーザーがボタンをクリックすると、ボタンでグラデーションアニメーションが開始されないようにしたい。私を導いてください。ありがとう