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!
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!
It should be:
VisualStateManager::GoToState(this, "statename", true);