0

Can someone provide a C++ example for the following equivalent C#?

VisualStateManager.GoToState(this, "statename", true);

I don't know C++ and am working to convert some animations for another group. The MSDN examples are blank!

dex3703
  • 2,077
  • 4
  • 28
  • 45

1 Answers1

1

It should be:

VisualStateManager::GoToState(this, "statename", true);
shf301
  • 31,086
  • 2
  • 52
  • 86