fork download
  1.  
  2. class HistComboBox : ComboBox
  3. {
  4. public HistComboBox()
  5. {
  6. this.MaxHistoryCount = 10;
  7. }
  8.  
  9. public void SaveHistory()
  10. {
  11. // 自動補完が有効になっていない場合は処理しない
  12. if (AutoCompleteMode == AutoCompleteMode.None)
  13. return;
  14.  
  15. // 自動補完元がリスト項目またはカスタム項目になっていない場合は処理しない。
  16. // 自動補完元がリスト項目の場合、DataSourceを使用している場合は処理しない。
  17. if (AutoCompleteSource != AutoCompleteSource.CustomSource &&
  18. (AutoCompleteSource != AutoCompleteSource.ListItems || DataSource != null))
  19. return;
  20.  
  21. // 入力値の取得と履歴化の補正
  22. var inputed = Text;
  23. var handler = AddingHistory;
  24. var history = new AddingHistoryEventArgs { AddingHistory = inputed };
  25. if (handler != null)
  26. handler(this, history);
  27. if (history.AddingHistory == null)
  28. return;
  29.  
  30. if (AutoCompleteSource == AutoCompleteSource.ListItems)
  31. {
  32. // 自動補完元がリスト項目の場合
  33. if (Items.Contains(history.AddingHistory))
  34. Items.Remove(history.AddingHistory);
  35. Items.Insert(0, history.AddingHistory);
  36. while (Items.Count > 0 && Items.Count > MaxHistoryCount)
  37. Items.RemoveAt(Items.Count - 1);
  38. }
  39. else if (AutoCompleteSource == AutoCompleteSource.CustomSource)
  40. {
  41. // 自動補完元がカスタム項目の場合
  42. if (AutoCompleteCustomSource == null)
  43. return;
  44. if (AutoCompleteCustomSource.Contains(history.AddingHistory))
  45. AutoCompleteCustomSource.Remove(history.AddingHistory);
  46. AutoCompleteCustomSource.Insert(0, history.AddingHistory);
  47. while (AutoCompleteCustomSource.Count > 0 && AutoCompleteCustomSource.Count > MaxHistoryCount)
  48. AutoCompleteCustomSource.RemoveAt(AutoCompleteCustomSource.Count - 1);
  49. }
  50.  
  51. // 入力値の戻し
  52. Text = history.AddingHistory;
  53. }
  54.  
  55. protected override void OnValidated(EventArgs e)
  56. {
  57. base.OnValidated(e);
  58.  
  59. // フォーカスの移動先を取得
  60. var form = FindForm();
  61. if (form == null)
  62. return;
  63. var focused = form.ActiveControl;
  64.  
  65. SaveHistory();
  66.  
  67. // フォーカスの移動
  68. form.ActiveControl = focused;
  69. }
  70.  
  71. public class AddingHistoryEventArgs : EventArgs
  72. {
  73. public string AddingHistory { get; set; }
  74. }
  75.  
  76. public event EventHandler<AddingHistoryEventArgs> AddingHistory;
  77.  
  78. [DefaultValue(10)]
  79. public int MaxHistoryCount { get; set; }
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty