Possible Duplicate:
WPF Button isPressed and isEnabled problem

Here is a snippet of code from an application that I am developing using WPF and XAML. What I am trying to do is get the button's background to stay the same color when it is clicked on by the user as it is when it is not clicked on by the user.

Note: There is an image in the button.

<Button Name="Button1" Background="#3852A4" Grid.Column="0" Grid.Row="0" Width="35" Height="35" HorizontalAlignment="Left" VerticalAlignment="Top" Click="swapGd1andGd2">
    <Button.Style>
        <Style>
            <Style.Triggers>
                <Trigger Property="Button.IsPressed" Value="True">
                    <Setter Property="Button.Background" Value="#3852A4" />
                </Trigger>
            </Style.Triggers>
        </Style>
    </Button.Style>
    <Image Source="Images/112_DownArrowShort_Grey_24x24_72.png" Width="24" Height="24" Stretch="Fill"></Image>
</Button>`

My question is, why doesn't this code produce the results that I want?

link|improve this question

And if you can tell me how to format this code better please tell me. Fairly new to stackoverflow. – Stylzs05 Jan 23 at 19:14
1  
Read this. – H.B. Jan 23 at 19:14
Agreed. Possibly merge my answer over? The other one doesn't mention why just setting the style doesn't work. – mydogisbox Jan 23 at 19:35
feedback

closed as exact duplicate by H.B., casperOne Jan 24 at 19:39

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 2 down vote accepted

In wpf buttons have a default template that overrides style values. See here for an example of how to change the value using a template.

link|improve this answer
Thanks man. I've worked on this on and off for a few days and it's just not working like I want it to. I'm just going to abandon this feature, it's taking to much time. – Stylzs05 Jan 26 at 17:10
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.