1 write to textBox
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ImportDesigner.xaml.cs (1)
119this.textBox = this.inputComboBox.Template.FindName("PART_EditableTextBox", this.inputComboBox) as TextBox;
22 references to textBox
System.Data (22)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ImportDesigner.xaml.cs (22)
110Fx.Assert(this.textBox != null, "ComboBox should contains a child of TextBox"); 111textBox.TextChanged -= OnTextChanged; 112textBox.PreviewKeyUp -= OnPreviewKeyUp; 113textBox.IsKeyboardFocusedChanged -= OnTextBoxIsKeyboardFocusedChanged; 120this.textBox.TextChanged += new TextChangedEventHandler(OnTextChanged); 121this.textBox.PreviewKeyUp += new KeyEventHandler(OnPreviewKeyUp); 122this.textBox.IsKeyboardFocusedChanged += new DependencyPropertyChangedEventHandler(OnTextBoxIsKeyboardFocusedChanged); 123this.textBox.IsUndoEnabled = false; 126this.textBox.Foreground = SystemColors.GrayTextBrush; 127this.textBox.FontStyle = FontStyles.Italic; 128this.textBox.Text = this.importsHintText; 252this.textBox.Text = string.Empty; 377this.lastInput = this.textBox.Text.Trim(); 378this.lastCursePosition = this.textBox.CaretIndex; 408this.textBox.Text = this.lastInput; 409this.textBox.CaretIndex = this.lastCursePosition; 421string userInput = this.textBox.Text; 423this.textBox.Text = userInput; 590string originalText = this.textBox.Text; 591int originalCursePosition = this.textBox.CaretIndex; 604this.textBox.Text = lastInput; 605this.textBox.CaretIndex = originalCursePosition;