public DialogEventArgs(BasisViewModel basisViewModel, string windowTitle, int windowHeight, int windowWidth)
 {
     this.ViewModel    = basisViewModel;
     this.WindowTitle  = windowTitle;
     this.WindowHeight = windowHeight;
     this.WindowWidth  = windowWidth;
 }
Beispiel #2
0
 public DialogWindowViewModel(ViewModelEvents viewModelEvents, BasisViewModel viewModel, string windowTitle, int windowHeight, int windowWidth)
     : base(viewModelEvents)
 {
     this.viewModel    = viewModel;
     this.windowTitle  = windowTitle;
     this.windowHeight = windowHeight;
     this.windowWidth  = windowWidth;
 }