vote up 3 vote down star

I'm working on the toolbar for a WPF application. The icon set we are using has separate icons for normal, hover and disabled states, and I would like to use them. I was wondering what the simplest solution/normal way of doing this is?

My first thought was to create a user control "ImageButton" with properties NormalImage, ActiveImage, DisabledImage, that contained the necessary triggers for IsMouseOver and IsEnabled. This works, but unfortunately causes the buttons to lose the toolbar button style, i.e. they get the standard button borders, no blue background on mouseover and are spaced too closely together. As I understand it, this is because WPF's Toolbar control overrides the style for child Button elements, and fails to restyle my Buttons because they are inside a parent ImageButton.

Does anyone have any suggestions for getting this to work? I'm pretty new to WPF so it could be I'm just approaching this in a backwards manner.

flag
While this doesn't answer your question, I always prefer not to have separate hover and disabled images for toolbars. Especially with WPF, you can have nice effects without the hassle of managing (and keeping in sync) each image three times, and your resource file is much smaller as well. – OregonGhost Mar 10 at 13:39

1 Answer

vote up 2 vote down check

You can base the style of your Button on the Style yielded by ToolBar.ButtonStyleKey. For example:

<Style TargetType="Button" BasedOn="{StaticResource {x:Static ToolBar.ButtonStyleKey}}">
    <Setter Property="MinHeight" Value="40"/>
</Style>

HTH, Kent

link|flag
That works beautifully, thank you. As I don't need to customize the look of the button beyond changing the image, even changing the <Button> element to <Button Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"> did the trick. – odd parity Mar 10 at 13:46

Your Answer

Get an OpenID
or

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