ToolBar.TextBoxStyleKey Property

Definition

Gets the Style applied to text boxes on a ToolBar.

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

Property Value

A resource key that represents the default style for text boxes on the toolbar.

Examples

The following example uses this property to create a Style for TextBox controls on a ToolBar.

<Style x:Key="{x:Static ToolBar.TextBoxStyleKey}" TargetType="TextBox">
  <Setter Property="Background" Value="DarkBlue"/>
  <Setter Property="Foreground" Value="White"/>
  <Setter Property="FontSize" Value="14"/>
  <Setter Property="FontStyle" Value="Italic"/>
  <Setter Property="HorizontalAlignment" Value="Center"/>
  <Setter Property="VerticalAlignment" Value="Center"/>
  <Setter Property="Width" Value="75"/>
</Style>

Remarks

Use this property to change the default style of TextBox controls on the ToolBar.

XAML Attribute Usage

<object property="{ ToolBar.TextBoxStyleKey}"/>

Applies to