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