SystemColors.GrayTextBrushKey Property

Definition

Gets the ResourceKey for the SolidColorBrush that paints disabled text.

public:
 static property System::Windows::ResourceKey ^ GrayTextBrushKey { System::Windows::ResourceKey ^ get(); };
public static System.Windows.ResourceKey GrayTextBrushKey { get; }
static member GrayTextBrushKey : System.Windows.ResourceKey
Public Shared ReadOnly Property GrayTextBrushKey As ResourceKey

Property Value

The resource key for the SolidColorBrush that paints disabled text. This brush's IsFrozen property is true, so it cannot be modified.

Remarks

Use the GrayTextBrushKey to create a dynamic reference to the brush that paints disabled text. This dynamic reference will automatically update if the brush is changed. To create a static reference that does not update automatically, use GrayTextBrush.

XAML Attribute Usage

<object property="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/>  

XAML Values

x:Static
The x:Static Markup Extension.

Applies to

See also