How do you bind the VisualStateManager state of a control to a property in you viewmodel? Can it be done?

link|improve this question
You can use GoToStateAction to control the state. Then you just need to attach the behavior to a Button or something. – Xin May 14 '11 at 14:22
interesting, can you use that even if you dont have blend? – aL3891 May 14 '11 at 15:03
1  
yes. blend is just a tool. – Xin May 14 '11 at 15:05
But GoToStateAction isnt in the .net framework right? is it available somewhere as a royalty free dll/source? – aL3891 May 14 '11 at 15:34
feedback

2 Answers

up vote 8 down vote accepted

Actually you can. The trick is to make an Attatched property and add a property changed callback that actually calls GoToState:

public class StateHelper {
    public static readonly DependencyProperty StateProperty = DependencyProperty.RegisterAttached( 
        "State", 
        typeof( String ), 
        typeof( StateHelper ),
        new UIPropertyMetadata( null, StateChanged ) );

      internal static void StateChanged( DependencyObject target, DependencyPropertyChangedEventArgs args ) {
      if( args.NewValue != null )
        VisualStateManager.GoToState( ( FrameworkElement )target, args.NewValue, true );
    }
  }

You can then set this property in you xaml and add a binding to your viewmodel like any other:

<Window .. xmlns:local="clr-namespace:mynamespace" ..>
    <TextBox Text="{Binding Path=Name, Mode=TwoWay}"
             local:StateHelper.State="{Binding Path=State, Mode=TwoWay}" />
</Window>

Name and State are regular properties in the viewmodel. When Name is set in the viewmodel, either by the binding or something else, it can change the State witch will update the visual state. State could also be set by any other factor and still it would update the view state on the textbox.

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 target to a Control instead of a FrameworkElement.

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.

link|improve this answer
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

xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions" 
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" 

XAML

<i:Interaction.Behaviors>
   <ei:DataStateBehavior TrueState="LoginPage" FalseState="DefaultPage" 
                         Binding="{Binding IsLoginPage}" Value="true" />
</i:Interaction.Behaviors>

This is made even simpler by using a framework such as Caliburn.Micro.

link|improve this answer
i have now, i wish i had a few days ago though ;) very interesting, i hadnt thought about using commands to listen to the events like that – aL3891 May 16 '11 at 11:46
@al3891: I've updated the answer with another possible solution, depending on what exactly you're wanting to do. That article looks really good - I must admit I haven't implemented the solution in it yet but it's been on my list for a while! – Town May 16 '11 at 12:05
nifty :) i dont have blend though, are those assemblies available somewhere? – aL3891 May 16 '11 at 12:08
@al3891: Good question... I don't know for certain, but the accepted answer to this question certainly seems to suggest it. – Town May 16 '11 at 12:14
interesting, thanks :) – aL3891 May 16 '11 at 13:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.