26 writes to Text
PresentationFramework (7)
System\Windows\Controls\ContentPresenter.cs (3)
1105textBlock.Text = String.Format(culture, stringFormat, content); 1119textBlock.Text = (string)tc.ConvertTo(context, culture, content, typeof(string)); 1124textBlock.Text = String.Format(culture, "{0}", content);
System\Windows\Controls\Primitives\Popup.cs (1)
1309lbl.Text = text;
System\Windows\Controls\TextBlock.cs (1)
191Text = Text + text;
System\Windows\Documents\InlineCollection.cs (1)
198textBlock.Text = textBlock.Text + text;
System\windows\Documents\TextEditorContextMenu.cs (1)
494text.Text = suggestion;
PresentationUI (11)
InstallationError.xaml.cs (2)
59txtTitle.Text = value; 75Text.Text = value;
MS\Internal\Documents\Application\StatusInfoItem.cs (1)
176_infoBarText.Text = resources.Text;
TenFeetInstallationError.xaml.cs (2)
61txtTitle.Text = value; 77Text.Text = value;
TenFeetInstallationProgress.xaml.cs (6)
83DownloadFrom.Text = (value as Uri).ToString(); 101ApplicationNameText.Text = _application; 117PublisherText.Text = _publisher; 127CurrentBytesText.Text = String.Format(CultureInfo.CurrentCulture, SR.ProgressBarKiloBytesStringFormat, (bytesDownloaded / 1024)); 128TotalBytesText.Text = String.Format(CultureInfo.CurrentCulture, SR.ProgressBarKiloBytesStringFormat, (bytesTotal / 1024)); 134ProgressBarStatusText.Text = String.Format(CultureInfo.CurrentCulture, SR.ProgressBarPercentageStringFormat, percentDone);
System.Windows.Controls.Ribbon (8)
Microsoft\Windows\Controls\Ribbon\RibbonTwoLineText.cs (8)
276_textBlock1.Text = null; 280_textBlock2.Text = this.Text; 308_textBlock1.Text = firstLineText; 313_textBlock2.Text = secondLineText; 322_textBlock1.Text = this.Text; 326_textBlock2.Text = null; 344_textBlock1.Text = this.Text; 380_textBlock1.Text = this.Text;
14 references to Text
PresentationFramework (8)
MS\Internal\LayoutDump.cs (1)
491DumpTextRange(writer, text.Text);
System\Windows\Controls\ComboBox.cs (1)
1612strValue = text.Text;
System\Windows\Controls\TextBlock.cs (5)
191Text = Text + text; 239return new SimpleContentEnumerator(Text); 569/// DependencyProperty for <see cref="Text" /> property. 2865line = new SimpleLine(this, Text, lineProperties.DefaultTextRunProperties); 2891_complexContent = new ComplexContent(this, textContainer, false, Text);
System\Windows\Documents\InlineCollection.cs (1)
198textBlock.Text = textBlock.Text + text;
PresentationUI (4)
InstallationError.xaml.cs (2)
63return txtTitle.Text; 79return Text.Text;
TenFeetInstallationError.xaml.cs (2)
65return txtTitle.Text; 81return Text.Text;
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonComboBox.cs (1)
853strValue = text.Text;
Microsoft\Windows\Controls\TextSearchInternal.cs (1)
652return textBlock.Text;