예제 #1
0
 private SnapshotListViewItem GetSnapshotItem(SnapshotListViewItemState state)
 {
     foreach (SnapshotListViewItem item in lvSnapshots.Items)
     {
         if (item.State == state)
         {
             return(item);
         }
     }
     return(null);
 }
예제 #2
0
 public SnapshotListViewItem()
     : base("")
 {
     State = SnapshotListViewItemState.None;
 }