예제 #1
0
파일: Utils.cs 프로젝트: hafsjold/snvrepos
 public void DeleteCustomColumn(FileView flView)
 {
     foreach (string key in Program.customColumns.Keys)
     {
         if (!this.ContainsKey(key))
         {
             this[key] = Program.customColumns[key];
         }
     }
     ReadColoumnAttributes(flView);
     foreach (string key in Program.customColumns.Keys)
     {
         flView.DeleteCustomColumn(this[key].Name);
     }
 }