3 writes to AutoCompleteCustomSource
System.Windows.Forms (2)
winforms\Managed\System\WinForms\TextBox.cs (1)
840
AutoCompleteCustomSource
= null;
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
294
set { TextBox.
AutoCompleteCustomSource
= value; }
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (1)
415
this.typeTextBox.
AutoCompleteCustomSource
= autoCompleteStringCollection;
7 references to AutoCompleteCustomSource
System.Windows.Forms (6)
winforms\Managed\System\WinForms\TextBox.cs (5)
746
string[] strings = new string[
AutoCompleteCustomSource
.Count];
747
for (int i = 0; i <
AutoCompleteCustomSource
.Count; i++) {
748
strings[i] =
AutoCompleteCustomSource
[i];
778
if (IsHandleCreated &&
AutoCompleteCustomSource
!= null) {
779
if (
AutoCompleteCustomSource
.Count == 0) {
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
293
get { return TextBox.
AutoCompleteCustomSource
; }
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (1)
743
UpdateTreeView(GetTargetFrameworkTypes(this.localTypeProvider).ToArray(), this.typeTextBox.
AutoCompleteCustomSource
);