Пример #1
0
 public ChildViewModelProperty(PropertyInfo property, object viewModel, ILifecycleController lifecycleController)
 {
     this.property            = property;
     this.viewModel           = viewModel;
     this.lifecycleController = lifecycleController;
 }
 public ChildViewModelProperty(PropertyInfo property, object viewModel, ILifecycleController lifecycleController)
 {
     this.property = property;
     this.viewModel = viewModel;
     this.lifecycleController = lifecycleController;
 }
Пример #3
0
 public SingleChildConductor(ILifecycleController lifecycleController, object viewModel)
 {
     this.lifecycleController            = lifecycleController;
     this.viewModel                      = viewModel;
     this.viewModelNotifyPropertyChanged = (INotifyPropertyChanged)viewModel;
 }
 public SingleChildConductor(ILifecycleController lifecycleController, object viewModel)
 {
     this.lifecycleController = lifecycleController;
     this.viewModel = viewModel;
     this.viewModelNotifyPropertyChanged = (INotifyPropertyChanged)viewModel;
 }