如何更改TextBox的突出显示文本颜色?

时间:2011-09-14 09:16:53

标签: .net wpf background textbox

WPF使用系统突出显示颜色绘制所选文本的背景。我也想覆盖它。

我有一个textBox的控件模板:

<ControlTemplate TargetType="TextBox">
    <Border Name="Border"
          CornerRadius="2" 
          Padding="2"
          Background="Transparent"
          BorderThickness="0" >
        <ScrollViewer Margin="0" x:Name="PART_ContentHost"/>
    </Border>
    <ControlTemplate.Triggers>
        <Trigger Property="IsEnabled" Value="False">
            <Setter TargetName="Border" Property="Background" Value="{StaticResource TextBoxDisabledBackgroundColor}"/>
            <Setter Property="Foreground" Value="{StaticResource TextBoxDisabledForegroundColor}"/>
        </Trigger>
        <Trigger Property="IsReadOnly" Value="false">
            <Setter TargetName="Border" Property="Background" Value="{StaticResource TextBoxBackgroundColor}"/>
            <Setter Property="Foreground" Value="Black"/>
        </Trigger>
    </ControlTemplate.Triggers>
</ControlTemplate>

如何更改此模板以覆盖突出显示的文本和背景颜色?

2 个答案:

答案 0 :(得分:6)

在.NET 4中,您可以使用文本框的SelectionBrush属性。

早期版本要求您在代码中覆盖系统颜色,因为没有容易暴露的属性 - 文本框只会使用系统定义的值。

答案 1 :(得分:-2)

我用风格来做,例如:

  <Style x:Key="BoundedTextBox"  TargetType="{x:Type TextBox}">
    <Style.Triggers>
        <DataTrigger Binding="{Binding IsAutoCalculated}" Value="True">
            <Setter Property="Background" Value="{StaticResource MyBlue}" />
        </Trigger>
    </Style.Triggers>
</Style>