|
i don´t understand how to use the VisualStateManager with Caliburn Micro.
i have a Group in XAML:
<VisualStateManager.VisualStateGroups
<!-- Visual states reflect the application's view state -->
<VisualStateGroup x:Name="ApplicationViewStates"
And now i want to get CurrentStateChanged Event in the ViewModel
it would be in the Codebehind CurrentStateChanged="VisualStateChanged">
But what is this in Caliburn.Micro ?
|