11 writes to Text
PresentationFramework (7)
src\Framework\System\Windows\Controls\ContentPresenter.cs (3)
1108textBlock.Text = String.Format(culture, stringFormat, content); 1122textBlock.Text = (string)tc.ConvertTo(context, culture, content, typeof(string)); 1127textBlock.Text = String.Format(culture, "{0}", content);
src\Framework\System\Windows\Controls\Primitives\Popup.cs (1)
1314lbl.Text = text;
src\Framework\System\Windows\Controls\TextBlock.cs (1)
203Text = Text + text;
src\Framework\System\Windows\Documents\InlineCollection.cs (1)
202textBlock.Text = textBlock.Text + text;
src\Framework\System\windows\Documents\TextEditorContextMenu.cs (1)
520text.Text = suggestion;
System.Activities.Core.Presentation (1)
System\Activities\Core\Presentation\FlowchartExpressionAdorner.cs (1)
43Text = expressionString,
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\View\ExpressionValueEditor.cs (1)
97hint.Text = string.Format(CultureInfo.CurrentCulture, hintFormatString, propertyValue.ParentProperty.PropertyName, friendlyTypeName);
System.Activities.Presentation\System\Activities\Presentation\View\SearchToolTipAdorner.cs (1)
34Text = text,
System.Activities.Presentation\System\Activities\Presentation\View\WorkflowViewService.cs (1)
95text.Text = windowText;
8 references to Text
PresentationFramework (8)
src\Framework\MS\Internal\LayoutDump.cs (1)
494DumpTextRange(writer, text.Text);
src\Framework\System\Windows\Controls\ComboBox.cs (1)
1615strValue = text.Text;
src\Framework\System\Windows\Controls\TextBlock.cs (5)
203Text = Text + text; 251return new SimpleContentEnumerator(Text); 593/// DependencyProperty for <see cref="Text" /> property. 2954line = new SimpleLine(this, Text, lineProperties.DefaultTextRunProperties); 2980_complexContent = new ComplexContent(this, textContainer, false, Text);
src\Framework\System\Windows\Documents\InlineCollection.cs (1)
202textBlock.Text = textBlock.Text + text;