I want to be able to apply a style at runtime to an object ONLY if the current style is the default style. I don't want to override any user defined styles. Anyone know how to do this?
|
|
It appears you can do it this way:
You can wrap that up in an extension method like this:
Then you can just call Also, have a look at this article: Default Templates in WPF |
||
|
|
|
Check the DefaultStyleKeyProperty, which is a static property of any custom control.
Usually if there is no style associated with the control, the Name will be "DefaultStyleKey" |
||
|
|
