19 writes to Text
PresentationFramework (10)
src\Framework\MS\Internal\Ink\TextClipboardData.cs (1)
98
textBox.
Text
= text;
src\Framework\System\Windows\Automation\Peers\TextBoxAutomationPeer.cs (1)
108
owner.
Text
= value;
src\Framework\System\Windows\Controls\ComboBox.cs (3)
784
EditableTextBoxSite.
Text
= newText;
820
EditableTextBoxSite.
Text
= matchedText;
853
EditableTextBoxSite.
Text
= text;
src\Framework\System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
232
textBox.
Text
= inputText;
src\Framework\System\Windows\Controls\DataGridTextColumn.cs (1)
181
textBox.
Text
= inputText;
src\Framework\System\Windows\Controls\DatePicker.cs (3)
585
dp._textBox.
Text
= newValue;
718
_textBox.
Text
= this._defaultText;
724
_textBox.
Text
= this.DateTimeToString((DateTime)this.SelectedDate);
System.Activities.Presentation (9)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\ValueEditors\StringEditor.cs (2)
298
this.
Text
= this.Value;
302
this.
Text
= null;
System.Activities.Presentation\System\Activities\Presentation\View\ImportDesigner.xaml.cs (7)
128
this.textBox.
Text
= this.importsHintText;
148
inputTextBox.
Text
= string.Empty;
156
inputTextBox.
Text
= this.importsHintText;
252
this.textBox.
Text
= string.Empty;
408
this.textBox.
Text
= this.lastInput;
423
this.textBox.
Text
= userInput;
604
this.textBox.
Text
= lastInput;
30 references to Text
PresentationFramework (18)
src\Framework\System\Windows\Automation\Peers\TextBoxAutomationPeer.cs (1)
88
return owner.
Text
;
src\Framework\System\Windows\Controls\ComboBox.cs (3)
650
TextUpdated(EditableTextBoxSite.
Text
, true);
671
TextUpdated(EditableTextBoxSite.
Text
, true);
851
if (EditableTextBoxSite != null && EditableTextBoxSite.
Text
!= text)
src\Framework\System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
225
string originalValue = textBox.
Text
;
src\Framework\System\Windows\Controls\DataGridTextColumn.cs (1)
174
string originalValue = textBox.
Text
;
src\Framework\System\Windows\Controls\DatePicker.cs (5)
528
if (string.IsNullOrEmpty(dp._textBox.
Text
))
534
DateTime? date = dp.ParseText(dp._textBox.
Text
);
1181
if (!string.IsNullOrEmpty(this._textBox.
Text
))
1183
string s = this._textBox.
Text
;
1307
this.SetValueNoCallback(DatePicker.TextProperty, this._textBox.
Text
);
src\Framework\System\Windows\Controls\Primitives\DatePickerTextBox.cs (3)
109
if (!string.IsNullOrEmpty(this.
Text
))
111
Select(0, this.
Text
.Length);
137
if (this.Watermark != null && string.IsNullOrEmpty(this.
Text
))
src\Framework\System\Windows\Controls\TextBox.cs (4)
436
text = this.
Text
;
1152
return this.
Text
;
1238
resetText = (newTextValue != null && newTextValue !=
Text
);
1256
OnTextPropertyChanged(newTextValue,
Text
);
System.Activities.Presentation (12)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\ValueEditors\StringEditor.cs (1)
336
this.Value = this.
Text
;
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (2)
1249
tb.CaretIndex = tb.
Text
.Length;
1307
textBox.CaretIndex = textBox.
Text
.Length;
System.Activities.Presentation\System\Activities\Presentation\View\ImportDesigner.xaml.cs (5)
146
if (inputTextBox.
Text
== this.importsHintText)
153
else if (string.IsNullOrEmpty(inputTextBox.
Text
))
377
this.lastInput = this.textBox.
Text
.Trim();
421
string userInput = this.textBox.
Text
;
590
string originalText = this.textBox.
Text
;
System.Activities.Presentation\System\Activities\Presentation\View\TypeBrowser.xaml.cs (1)
352
string searchText = ((TextBox)sender).
Text
;
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (3)
1395
currentText = this.editingTextBox.
Text
?? this.editingTextBox.
Text
.Trim();
1930
this.ExpressionText = etb.editingTextBox.
Text
;