1
It is possible to create a style in WPF where will be using for all components of the same type, so it is not necessary to call the Style for the component?
My idea is to create a style as for example
<Style TargetType="Button">
</Style>
And all Buttons that have no style associated carry the style of that site, without it being necessary for me to specify the style key for the button.
In the same way that happens with css, I refer a style to "p" and all "p" receive that style.
Already tried to put the style in App.xaml?
– vinibrsl
Yes, but it is necessary to reference with a key is not?
– Bruno Aparecido da Silva