예제 #1
0
 public AutoComplete(AutoCompleteKeeper Keeper, AutoCompleteType type = AutoCompleteType.replace)
 {
     this.Keeper = Keeper;
     ParentForm  = ThisControl.FindForm();
     Type        = type;
     AddEvents();
 }
예제 #2
0
 public AutoComplete(Control ctrl, List <string> values, AutoCompleteKeeper Keeper, AutoCompleteType type = AutoCompleteType.replace)
 {
     ThisControl = ctrl;
     this.Keeper = Keeper;
     ParentForm  = ThisControl.FindForm();
     Values      = values;
     Type        = type;
     AddEvents();
 }