Example #1
0
        public NavigationPanelViewModel(INavigationPanelState navigationPanelState, IChangeContentRegionCompositeCommand changeContentRegionsViewCommand)
        {
            _navigationPanelState = navigationPanelState;
            _navigationPanelState.PropertyChanged += OnNavigationPanelStatePropertyChanged;

            ChangeContentRegionsViewCommand = changeContentRegionsViewCommand;
        }
Example #2
0
 public ChangeCurrentRegionInNavigationPanelCommand(INavigationPanelState navigationPanelState)
 {
     _navigationPanelState = navigationPanelState;
 }