I want to change the background color of our apps main window when a property changes. We have a business date that can be changed and I want to change the window background when it has changed from expected. I've set up a property to tell this. But can I set a style datatrigger on a window that changes itself? Or would I need to do this in the app.xaml?
|
|
|||
|
|
|
If you're exposing a custom property on the Window just make sure it's defined as a DependencyProperty and then you should be able to use a regular trigger in the style to react to the property. Like so:
|
||
|
|
|
|
Maybe it's better to just bind the background with the property. You need to set the datasource of the window to the object and may need a valueconverter. |
||
|
|
|
Here's a solution with a converter approach: XAML:
C#:
|
||
|
|
|
|
I ended up kind of doing what Drew suggested. Except I didn't use a Dependency Property.
IsBusinessDateChanged is a property on my Viewmodel that gets set by a service. I'm not sure why this was so hard. |
||
|
|
