Is it possible to create a style in WPF where it will be used 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 such as
<Style TargetType="Button">
</Style>
And all the buttons that do not have any style associated with them load the style of that place, without it being necessary to indicate the style key for the button.
As with css, I refer to a style for "p" and all "p's" get that style.