gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 20:41:56 26 4
gpt4 key购买 nike

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

最佳答案

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

<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>

关于基于文本长度的 WPF 文本框背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1916217/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com