вы можете использовать Textbox и установить цвет фона на мыши над
<TextBox TextWrapping="Wrap" Background="#FFBA2C2C" Height="20">
<TextBox.Template>
<ControlTemplate>
<StackPanel Orientation="Horizontal">
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="CommonStates">
<VisualState x:Name="Normal"/>
<VisualState x:Name="MouseOver">
<Storyboard>
<ColorAnimation To="Red" Storyboard.TargetProperty="(TextBlock.Foreground).(SolidColorBrush.Color)" Storyboard.TargetName="textBlock" d:IsOptimized="True" Duration="0"/>
</Storyboard>
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<TextBlock x:Name="textBlock" Text="Click Me"/>
</StackPanel>
</ControlTemplate>
</TextBox.Template>
</TextBox>
привет Smith.Patel Большое спасибо вам помочь, это то, что я хочу, еще раз спасибо . –