WPF文本框背景颜色基于文本长度

时间:2009-12-16 17:22:41

标签: wpf colors textbox background

我在listview itemtemplate中有一个文本框。我想在长度大于75个字符时将文本框的背景颜色更改为红色,并且我需要在用户键入时更新背景颜色。在WPF中实现这一目标的最佳方法是什么?

2 个答案:

答案 0 :(得分:8)

我相信这样的事情会起作用。它需要您编写自己的背景颜色转换器。

<TextBox 
    Background="{Binding RelativeSource={RelativeSource self},
        Path=Text, 
        UpdateSourceTrigger=PropertyChanged,
        Converter={StaticResource backgroundColorConverter}}" 
    ... 
/>

另一种选择是使用如下的DataTrigger。这还需要转换器来检查字符串的长度是否超过75。

<TextBox>
    ....
    <TextBox.Style>
        <Style TargetType="{x:Type TextBox}">
            <Setter Property="Background" Value="YourDefaultColor" />
            <Style.Triggers>
                <DataTrigger Binding="{Binding ElementName=YourTextBox, Path=Text, Converter={StaticResource textLengthColorConverter}}" Value="True">
                    <Setter Property="Background" Value="Red" />
                </DataTrigger>
            </Style.Triggers>
        </Style>
    </TextBox.Style>
</TextBox>

答案 1 :(得分:0)

你可以使用&#34; Run&#34;标记为文本块,根据文本长度

应用背景