WPF TextBlock红色负数

时间:2010-07-08 15:15:10

标签: wpf triggers styles textblock datatrigger

我正在尝试找出创建样式/触发器以将前景设置为红色的最佳方法,当值为< 0.最好的方法是什么?我假设DataTrigger,但我如何检查负值,我是否必须创建自己的IValueConverter?

3 个答案:

答案 0 :(得分:14)

如果你没有使用MVVM模型(你可能有ForegroundColor属性),那么最简单的方法就是创建一个新的IValueConverter,将你的背景绑定到你的值。

在MyWindow.xaml中:

<Window ...
    xmlns:local="clr-namespace:MyLocalNamespace">
    <Window.Resources>
        <local:ValueToForegroundColorConverter x:Key="valueToForeground" />
    <Window.Resources>

    <TextBlock Text="{Binding MyValue}"
               Foreground="{Binding MyValue, Converter={StaticResource valueToForeground}}" />
</Window>

<强> ValueToForegroundColorConverter.cs

using System;
using System.Windows.Media;
using System.Windows.Data;

namespace MyLocalNamespace
{
    class ValueToForegroundColorConverter: IValueConverter
    {
        #region IValueConverter Members

        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            SolidColorBrush brush = new SolidColorBrush(Colors.Black);

            Double doubleValue = 0.0;
            Double.TryParse(value.ToString(), out doubleValue);

            if (doubleValue < 0)
                brush = new SolidColorBrush(Colors.Red);

            return brush;
        }

        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            throw new NotImplementedException();
        }

        #endregion
    }
}

答案 1 :(得分:8)

您应该在ViewModel中拥有您的视图特定信息。但是你可以摆脱ViewModel中的Style特定信息。

因此在ViewModel中创建一个属性,该属性将返回一个bool值

public bool IsMyValueNegative { get { return (MyValue < 0); } }

并在DataTrigger中使用它,以便您可以消除ValueConverter及其装箱/拆箱。

<TextBlock Text="{Binding MyValue}"> 
  <TextBlock.Style> 
    <Style> 
      <Style.Triggers> 
        <DataTrigger Binding="{Binding IsMyValueNegative}" Value="True"> 
          <Setter Property="Foreground" Value="Red" /> 
        </DataTrigger> 
      </Style.Triggers> 
    </Style> 
  </TextBlock.Style> 
</TextBlock> 

答案 2 :(得分:4)

对于Amsakanna的解决方案,我必须在Property Setter中添加一个类名:

&lt; Setter Property =“ TextBlock .Foreground”Value =“Red”/&gt;