public EulaViewModel(RootViewModel root)
     : base(root)
 {
 }
 public DbAccountViewModel(RootViewModel root)
     : base(root)
 {
     this.root = root;
 }
Exemplo n.º 3
0
 public ViewModelBase(RootViewModel root)
 {
     this._root = root;
 }
Exemplo n.º 4
0
 public FinishViewModel(RootViewModel root)
     : base(root)
 {
 }
Exemplo n.º 5
0
 public InstallDirViewModel(RootViewModel root)
     : base(root)
 {
 }
 public WelcomeViewModel(RootViewModel root)
     : base(root)
 {
     this._root.PropertyChanged += new System.ComponentModel.PropertyChangedEventHandler(this.RootPropertyChanged);
 }