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