Example #1
0
 public ConfEditor(TransferForm parent, EditType type)
 {
     InitializeComponent();
     nameBox.Focus();
     this.parent = parent;
     this.Type   = type;
 }
Example #2
0
 private static void refreshAllConfList(ConfListChangeType type, string confName, string oldName = "")
 {
     for (int i = 0; i < formList.Count; i++)
     {
         TransferForm form = formList[i];
         form.refreshConfList(type, confName, oldName);
     }
 }