コード例 #1
0
        private DependencyWatcher(INotifyPropertyChanged target, Action <string> notifyPropertyChangedDelegate)
        {
            this.target  = target;
            dependencies = DependencyHelper.GetDependenciesDictionary(target);
            this.notifyPropertyChangedDelegate = notifyPropertyChangedDelegate;

            target.PropertyChanged += Target_OnPropertyChanged;
        }
コード例 #2
0
 protected void RegisterDependencies()
 {
     propertyDependencies = DependencyHelper.GetDependenciesDictionary(this);
 }