Пример #1
0
 public QuickScanVM(Paths paths)
     : this()
 {
     _paths            = paths;
     _folderComparison = new FolderComparison(null, paths, _showMatched, _showNode, _ignoreLeftOnly, _ignoreRightOnly);
     NotifyPropertyChanged("Folders", "LeftPath", "RightPath", "Files", "Root");
 }
Пример #2
0
 public FileComparison(FolderComparison parent, string fileName)
     : this()
 {
     Name    = fileName;
     _parent = parent;
     updateStatus();
 }
Пример #3
0
        internal void Refresh()
        {
            showBusy();
            System.Windows.Clipboard.Clear();

            _folderComparison = new FolderComparison(null, _paths, _showMatched, _showObj, _showNode, _ignoreLeftOnly, _ignoreRightOnly);
            NotifyPropertyChanged("Folders", "LeftPath", "RightPath", "Files", "Root");
            showBusy(false);
        }