1 write to typeTextBox
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (1)
146this.typeTextBox = new System.Windows.Forms.TextBox();
23 references to typeTextBox
System.Workflow.ComponentModel (23)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (23)
263resources.ApplyResources(this.typeTextBox, "typeTextBox"); 264this.typeTextBox.Name = "typeTextBox"; 265this.typeTextBox.TextChanged += new System.EventHandler(this.OnTypeTextBoxTextChanged); 283this.typeNameTableLayoutPanel.Controls.Add(this.typeTextBox, 1, 0); 413this.typeTextBox.AutoCompleteMode = AutoCompleteMode.Suggest; 414this.typeTextBox.AutoCompleteSource = AutoCompleteSource.CustomSource; 415this.typeTextBox.AutoCompleteCustomSource = autoCompleteStringCollection; 422this.typeTextBox.Text = GetSimpleTypeFullName(actualType); 436this.typeTextBox.Select(); 509Rectangle lineRectangle = new Rectangle(this.ClientRectangle.Left, this.artifactLabel.Bottom + ((this.typeNameTableLayoutPanel.Top + this.typeTextBox.Top - this.artifactLabel.Bottom) / 2), this.ClientRectangle.Width, 1); 529if (this.lastComboboxValue != this.typeTextBox.Text) 531this.lastComboboxValue = this.typeTextBox.Text; 532this.typeTextBox.Text = string.Empty; 533this.typeTextBox.Text = this.lastComboboxValue; 534this.typeTextBox.SelectionStart = this.typeTextBox.Text.Length; 546Type type = typeProvider.GetType(this.typeTextBox.Text); 586this.typeTextBox.Text = (this.artifactListView.SelectedItems[0].Tag as Type).FullName; 652Type actualType = typeProvider.GetType(this.typeTextBox.Text); 656this.lastComboboxValue = this.typeTextBox.Text; 743UpdateTreeView(GetTargetFrameworkTypes(this.localTypeProvider).ToArray(), this.typeTextBox.AutoCompleteCustomSource); 1020selectedType = typeProvider.GetType(this.typeTextBox.Text); 1074this.typeTextBox.Text = typeName;