You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>View model for the nested regions playground page (GitHub #3332).</summary>
public class NestedRegionPageViewModel : BindableBase
{
private readonly IRegionManager _regionManager;
public NestedRegionPageViewModel(IRegionManager regionManager)
{
_regionManager = regionManager;
NavigateNestedDemoCommand = new DelegateCommand(OnNavigateNestedDemo);
}
/// <summary>Navigates the outer region; the outer guest navigates the inner region when it loads (same pattern as community nested-region samples).</summary>
public DelegateCommand NavigateNestedDemoCommand { get; }