2

Just wondering how I can switch between visual states in a visual state group, like if I have:

<SomeControl x:name="ControlName">
    <VisualStateManager.VisualStateGroups>
       <VisualStateGroup x:Name="CommonStates">
          <VisualState x:Name="Me">..</VisualState>
          <VisualState x:Name="You">..</VisualState>

And so on and so forth, how can I from codebehind set the visual state group given?

Another question I have is, if there isa control in a control, say a Canvas, can I set individual stategroups for those seperately to the parent control?

meds
  • 21,699
  • 37
  • 163
  • 314

1 Answers1

4
VisualStateManager.GoToState(ControlName, isMe ? "Me" : "You", true);

Some info here: VisualStateManager.GoToState Method

David Gardiner
  • 16,892
  • 20
  • 80
  • 117
Alex Aza
  • 76,499
  • 26
  • 155
  • 134