Пример #1
0
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            _shellModel = new ShellViewModel(this._shellCoordinator);

            _shellWindow = new Shell();
            _shellWindow.DataContext = _shellModel;
            _shellWindow.Show();

            this._shellCoordinator.MainWindow = _shellWindow;
        }
Пример #2
0
 public NavbarCommand(ShellViewModel parent)
 {
     _parent = parent;
 }