up vote 8 down vote favorite
3
share [g+] share [fb]

I have just been learning about how styles and control templates in WPF can affect the appearance of buttons,

I'm trying to set the Button's FlatStyle, in the resources I've seen I can't find anything that tells me how I can do this, in Windows Forms this is set through FlatStyle = Flat.

How would one do this in WPF?

link|improve this question

62% accept rate
feedback

3 Answers

up vote 25 down vote accepted

The ToolBar class defines a Style that makes Buttons look flat. An example of using it is:

<Button Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"/>

WPF lets you completely restyle controls to make them look like whatever you want, which is why it doesn't have such a specific FlatStyle property on the Button control.

link|improve this answer
Which is more correct? To create a style for Button that mimics the ToolBar.ButtonStyle, or just use the code you've provided. Thanks Ed – MrEdmundo Mar 30 '09 at 14:23
1  
Depends on your scenario I think. You can also "derive" a style from the ToolBar Button style by using the Style.BasedOn property. – Kent Boogaart Mar 30 '09 at 15:11
This is a great tip. Thanks very much, Kent. – miliu Dec 12 '10 at 16:32
If I could up vote twice would. Never even occurred to me to poach a style from another control. Very nice tip. – thrag Jun 6 '11 at 23:36
feedback

This question has a good answer:

wpf flat button

link|improve this answer
feedback

WPF Buttons are drawn by WPF and don't have any relation with the underlying Windows API button that has a FlatStyle property. You should use WPF specific methods to style your button appropriately.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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