Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5843845
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T12:12:39+00:00 2026-05-22T12:12:39+00:00

How do you bind the VisualStateManager state of a control to a property in

  • 0

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

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T12:12:40+00:00Added an answer on May 22, 2026 at 12:12 pm

    Actually you can.
    The trick is to make an Attached 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.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Text data-bind expressions can have only a single property. How would I pluralize some
I am attempting to bind my ViewModel's IsInInputMode property to a Dependency Property in
I would like to bind GrivdViewColumn's Width Property with my ViewModel. Lets say an
To bind to the current DataContext in XAML you can use: <TextBlock Text={Binding} />
Cannot bind the CollectionViewSource DocProps is a public property public ObservableCollection<DocProp> DocProps1 DataContext is
I want to bind my ListView control to a generic list of objects? I
Is it possible to bind to a property of a property? Here is what
I would like to bind a TreeView control I have defined in XAML to
I am attempting to bind a ListView control to a DataTable , but the
I can bind a label to a slider as shown below: <Label Name=lblTest Content={Binding

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.