public WizardDialogViewModelBase(ShellViewModel shell, WizardViewModelBase wizard) : base(shell) { _shell = shell; _wizard = wizard; }
public WizardDialogViewModelBase(WizardViewModelBase wizard) : base() { _wizard = wizard; }
internal void SetDataContext(WizardViewModelBase viewModel) { this.DataContext = viewModel; viewModel.CloseWindowCommand = this.CloseWindowCommand; }