26 writes to Text
PresentationFramework (7)
System\Windows\Controls\ContentPresenter.cs (3)
1109
textBlock.
Text
= String.Format(culture, stringFormat, content);
1123
textBlock.
Text
= (string)tc.ConvertTo(context, culture, content, typeof(string));
1128
textBlock.
Text
= String.Format(culture, "{0}", content);
System\Windows\Controls\Primitives\Popup.cs (1)
1313
Text
= text
System\Windows\Controls\TextBlock.cs (1)
178
Text
+= text;
System\Windows\Documents\InlineCollection.cs (1)
195
textBlock.
Text
+= text;
System\windows\Documents\TextEditorContextMenu.cs (1)
492
Text
= suggestion
PresentationUI (11)
InstallationError.xaml.cs (2)
52
txtTitle.
Text
= value;
68
Text.
Text
= value;
MS\Internal\Documents\Application\StatusInfoItem.cs (1)
167
_infoBarText?.
Text
= resources.Text;
TenFeetInstallationError.xaml.cs (2)
54
txtTitle.
Text
= value;
70
Text.
Text
= value;
TenFeetInstallationProgress.xaml.cs (6)
76
DownloadFrom.
Text
= (value as Uri).ToString();
94
ApplicationNameText.
Text
= _application;
110
PublisherText.
Text
= _publisher;
120
CurrentBytesText.
Text
= String.Format(CultureInfo.CurrentCulture, SR.ProgressBarKiloBytesStringFormat, (bytesDownloaded / 1024));
121
TotalBytesText.
Text
= String.Format(CultureInfo.CurrentCulture, SR.ProgressBarKiloBytesStringFormat, (bytesTotal / 1024));
127
ProgressBarStatusText.
Text
= String.Format(CultureInfo.CurrentCulture, SR.ProgressBarPercentageStringFormat, percentDone);
System.Windows.Controls.Ribbon (8)
Microsoft\Windows\Controls\Ribbon\RibbonTwoLineText.cs (8)
272
_textBlock1.
Text
= null;
276
_textBlock2.
Text
= this.Text;
304
_textBlock1.
Text
= firstLineText;
309
_textBlock2.
Text
= secondLineText;
318
_textBlock1.
Text
= this.Text;
322
_textBlock2.
Text
= null;
340
_textBlock1.
Text
= this.Text;
376
_textBlock1.
Text
= this.Text;
12 references to Text
PresentationFramework (6)
MS\Internal\LayoutDump.cs (1)
489
DumpTextRange(writer, text.
Text
);
System\Windows\Controls\ComboBox.cs (1)
1590
strValue = text.
Text
;
System\Windows\Controls\TextBlock.cs (4)
226
return new SimpleContentEnumerator(
Text
);
556
/// DependencyProperty for <see cref="
Text
" /> property.
2843
line = new SimpleLine(this,
Text
, lineProperties.DefaultTextRunProperties);
2869
_complexContent = new ComplexContent(this, textContainer, false,
Text
);
PresentationUI (4)
InstallationError.xaml.cs (2)
56
return txtTitle.
Text
;
72
return Text.
Text
;
TenFeetInstallationError.xaml.cs (2)
58
return txtTitle.
Text
;
74
return Text.
Text
;
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonComboBox.cs (1)
844
strValue = text.
Text
;
Microsoft\Windows\Controls\TextSearchInternal.cs (1)
646
return textBlock.
Text
;