meds
meds

Reputation: 22916

Setting visual state group from codebehind?

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?

Upvotes: 2

Views: 1291

Answers (1)

Alex Aza
Alex Aza

Reputation: 78447

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

Some info here: VisualStateManager.GoToState Method

Upvotes: 4

Related Questions