テンプレートを変更したボタンがあるので、ボタンをクリックしてマウスオーバーすると異なる背景色が表示されます(水色ではなく緑色になります)。
それ自体はうまく機能しますが、いくつかの状態に応じて背景色を変更する必要があるため、コードの背景を変更する必要があります。
私の問題は、コードの背景色を変更すると、正しく変更されますが、クリックイベントまたはマウスオーバーイベントの背景が変更されなくなることです。
どういうわけかコードの背景色を上書きしたので、テンプレートで作成したものがカバーされていると思います。この問題を修正して、コード全体で背景を変更しながら、クリックしてマウスオーバーするアクションを実行するにはどうすればよいですか?
これが私のXAMLコードです:
<Style x:Key="NodeButtonStyle" TargetType="{x:Type Button}">
<Setter Property="FocusVisualStyle" Value="{StaticResource ButtonFocusVisual}"/>
<Setter Property="Background" Value="{StaticResource ButtonNormalBackground}"/>
<Setter Property="BorderBrush" Value="{StaticResource ButtonNormalBorder}"/>
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/>
<Setter Property="HorizontalContentAlignment" Value="Center"/>
<Setter Property="VerticalContentAlignment" Value="Center"/>
<Setter Property="Padding" Value="1"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Microsoft_Windows_Themes:ButtonChrome x:Name="Chrome" BorderBrush="{TemplateBinding BorderBrush}" Background="{TemplateBinding Background}" RenderDefaulted="{TemplateBinding IsDefaulted}" SnapsToDevicePixels="true" OverridesDefaultStyle="true">
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
</Microsoft_Windows_Themes:ButtonChrome>
<ControlTemplate.Triggers>
<Trigger Property="IsKeyboardFocused" Value="true">
<Setter Property="Background">
<Setter.Value>
<LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
<GradientStop Color="#FFCFF9C4" Offset="0"/>
<GradientStop Color="#FF249505" Offset="1"/>
<GradientStop Color="#FF58D835" Offset="0.5"/>
</LinearGradientBrush>
</Setter.Value>
</Setter>
</Trigger>
<Trigger Property="IsEnabled" Value="false">
<Setter Property="Foreground" Value="#ADADAD"/>
</Trigger>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background">
<Setter.Value>
<LinearGradientBrush EndPoint="0,1" StartPoint="0,0" Opacity="0.5">
<GradientStop Color="#FFCFF9C4" Offset="0"/>
<GradientStop Color="#FF249505" Offset="1"/>
<GradientStop Color="#FF58D835" Offset="0.5"/>
</LinearGradientBrush>
</Setter.Value>
</Setter>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
コードでは、button1.Background=newBrush;を実行します。
同様の質問を探してみましたが、見つかりませんでした。助けていただければ幸いです。私はblend4.net 3.5とC#を使用しています。