I want to set the background property of all the usercontrols of my project.
I tried with
<style TargetType={x:Type UserControl}>
<setter property="Background" Value="Red" />
</style>
It compiles but didn't work.
¿Any Idea? Thanks!
|
I want to set the background property of all the usercontrols of my project. I tried with
It compiles but didn't work. ¿Any Idea? Thanks! |
||||
|
|
You can only set a a style to a specific class, so this will work (create a UserControl object, not very useful):
But this doesn't (Create a class derived from UserControl):
What you can do is either explicitly set the style using the Style property:
or create a style for each derived class, you can use BasedOn to avoid duplicating the style content:
|
|||
|
I think you're missing some double quotes: Try this:
|
|||
|
|