You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CustomControls/ComboBoxCustomSearch.cs
+68-70Lines changed: 68 additions & 70 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
/*
3
3
MIT License
4
4
5
-
Copyright(c) 2021 Petteri Kautonen
5
+
Copyright(c) 2022 Petteri Kautonen
6
6
7
7
Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
of this software and associated documentation files (the "Software"), to deal
@@ -29,91 +29,89 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29
29
usingSystem.Linq;
30
30
usingSystem.Windows.Forms;
31
31
32
-
namespaceCustomControls
32
+
namespaceCustomControls;
33
+
// Parts of the code from (C): https://social.msdn.microsoft.com/Forums/en-US/4ebaaed0-cd29-4663-9a43-973729d66cea/autocomplete-combobox-match-any-part-of-string-not-only-beginning-string?forum=winforms
34
+
35
+
/// <summary>
36
+
/// A <see cref="ComboBox"/> implementation auto-completing case-insensitively items containing the typed text.
37
+
/// Implements the <see cref="System.Windows.Forms.ComboBox" />
// Parts of the code from (C): https://social.msdn.microsoft.com/Forums/en-US/4ebaaed0-cd29-4663-9a43-973729d66cea/autocomplete-combobox-match-any-part-of-string-not-only-beginning-string?forum=winforms
42
+
privateIList<object>collectionList;
35
43
36
44
/// <summary>
37
-
/// A <see cref="ComboBox"/> implementation auto-completing case-insensitively items containing the typed text.
38
-
/// Implements the <see cref="System.Windows.Forms.ComboBox" />
45
+
/// Initializes a new instance of the <see cref="T:CustomControls.ComboBoxCustomSearch" /> class.
0 commit comments