public FileStatsViewModel(IUIBaseService windowService, FileStats fileStats)
 {
     this.windowService              = windowService;
     this.fileStats                  = fileStats;
     this.fileStats.PropertyChanged += (obj, e) =>
     {
         // Raise all properties changed
         RaisePropertyChanged(string.Empty);
     };
 }
 public FileStatsViewModel(IUIBaseService windowService, FileStats fileStats)
 {
     this.windowService = windowService;
     this.fileStats = fileStats;
     this.fileStats.PropertyChanged += (obj, e) =>
     {
         // Raise all properties changed
         OnPropertyChanged(string.Empty);
     };
 }
Esempio n. 3
0
 // Constructors
 public DictViewModel(IUIBaseService windowService, Dict dictionary)
 {
     this.windowService = windowService;
     this.currentDictionary = dictionary;
 }
Esempio n. 4
0
 // Constructors
 public DictViewModel(IUIBaseService windowService, Dict dictionary)
 {
     this.windowService     = windowService;
     this.currentDictionary = dictionary;
 }