Esempio n. 1
0
File: Main.cs Progetto: bivy/bdub
 private ListViewItem CreateSnapshotLVItem(bSnapshot snapshot)
 {
     ListViewItem lvi = lvSnapshots.Items.Add(snapshot.DateTime.ToString());
     lvi.SubItems.Add(snapshot.Comment);
     lvi.SubItems.Add(snapshot.CountFiles().ToString());
     lvi.Tag = snapshot;
     return lvi;
 }
Esempio n. 2
0
 public override void Execute()
 {
     try
     {
         Snapshot = new bSnapshot();
         Snapshot.Comment = Comment;
         Snapshot.DateTime = DateTime.Now;
         Snapshot.RootFolder = ScanFolder(Folder, null);
     }
     catch (Exception ex)
     {
         Exception = ex;
     }
 }