8 references to SelectionTextBrushProperty
PresentationFramework (8)
MS\Internal\Documents\TextBoxLine.cs (1)
474Brush selectionTextBrush = uiScope.GetValue(TextBoxBase.SelectionTextBrushProperty) as Brush;
System\Windows\Controls\PasswordBox.cs (4)
88TextBoxBase.SelectionTextBrushProperty.OverrideMetadata(typeof(PasswordBox), 292/// <see cref="TextBoxBase.SelectionTextBrushProperty"/> 295TextBoxBase.SelectionTextBrushProperty.AddOwner(typeof(PasswordBox)); 298/// <see cref="TextBoxBase.SelectionTextBrushProperty"/>
System\Windows\Controls\Primitives\TextBoxBase.cs (3)
813/// <see cref="SelectionTextBrushProperty"/> 817get { return (Brush)GetValue(SelectionTextBrushProperty); } 818set { SetValue(SelectionTextBrushProperty, value); }