How to remove Glow of Button on Mouse hover in WPF

15,975

It's defined in Button's ControlTemplate. You should create your own.

for example like this.

<Style x:Key="MyButtonStyle" TargetType="Button">
  <Setter Property="Template">
     <Setter.Value>
        <ControlTemplate TargetType="Button">
           <Grid Background="{TemplateBinding Background}">
              <ContentPresenter HorizontalAlignment="Center"
                        VerticalAlignment="Center"/>
           </Grid>
        </ControlTemplate>
     </Setter.Value>
  </Setter>
</Style>

Then you can apply this style to your Button. and set Background to that image of yours.

<Button Style="{StaticResource MyButtonStyle}" Grid.Column="3" Name="Play" BorderBrush="Transparent"
        Focusable="False" Width="45" Height="45" Click="Play_Click"
        VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,6,10,6">
        <Button.Background >
            <ImageBrush ImageSource="images/play.png"  />
        </Button.Background>
</Button>
Share:
15,975
Sarin Vadakkey Thayyil
Author by

Sarin Vadakkey Thayyil

Senior Software Development Engineer at FactSet Research Systems.

Updated on July 22, 2022

Comments

  • Sarin Vadakkey Thayyil
    Sarin Vadakkey Thayyil almost 2 years

    I am using a simple button in WPF. I have put an image for the button on background. My problem is, when i move mouse pointer to button it get a default glow and override the image given as background.

            <Button Grid.Column="3" Name="Play" BorderBrush="Transparent"
                Focusable="False" Width="45" Height="45" Click="Play_Click"
                VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,6,10,6">
                <Button.Background >
                    <ImageBrush ImageSource="images/play.png"  />
                </Button.Background>
                <Button.Foreground>
                    <ImageBrush ImageSource="images/play.png"  />
                </Button.Foreground>
            </Button>
    

    Please help me.