How do you bind the VisualStateManager state of a control to a property in you viewmodel? Can it be done?
feedback
|
|
Actually you can. The trick is to make an Attatched property and add a property changed callback that actually calls GoToState:
You can then set this property in you xaml and add a binding to your viewmodel like any other:
Since we're using a normal binding to bind to Status, we can apply converters or anything else that we'd normally be able to do, so the viewmodel doesn't have to be aware that its actually setting a visual state name, State could be a bool or an enum or whatever. You can also use this approach using the wpftoolkit on .net 3.5, but you have to cast Another quick note on visual states, make sure you don't name your visual states so that they conflict with the built in ones unless you know what you're doing. This is especially true for validation since the validation engine will try and set its states everytime the binding is updated (and at some other times as well). Go here for a reference on visual state names for diffrent controls. | ||||
|
feedback
|
|
Have a read of this article: Silverlight 4: using the VisualStateManager for state animations with MVVM Alternatively, if you're just after switching between two states you can use DataStateBehaviour. I've used this to switch the background when the login page is displayed. Namespaces
XAML
This is made even simpler by using a framework such as Caliburn.Micro. | |||||||||||
feedback
|