Silverlight使用阈值转换值

本文关键字:转换 阈值 Silverlight | 更新日期: 2023-09-27 18:00:34

我试图使用两个阈值转换一个值,对数据库的调用将返回三个变量

Double Score;
Double LowerThreshold;
Double HigherThreshold;

如果分数低于较低阈值,则显示红色图像,如果分数在两个阈值之间,则显示琥珀色,如果分数高于较高阈值,则将显示绿色。

目前我正在使用自定义的ValueConverter,但我不确定这是否是最好的方法。我将高阈值和低阈值合并在一起,使它们看起来像"30,50",然后解析字符串中的值,并确定要显示的图像。

这是我用于ValueConverter 的代码

public class ScoreConverter : IValueConverter
{
    public object Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        if (value is double)
        {
            if (parameter is string)
            {
                if ((parameter as string).Contains(",")) 
                {
                    string[] thresholds = (parameter as string).Split(',');
                    int lowerThreshold;
                    int upperThreshold;
                    bool success;
                    success = int.TryParse(thresholds[0], out lowerThreshold);
                    if (!success)
                        return "Error";
                    success = int.TryParse(thresholds[1], out upperThreshold);
                    if (!success)
                        return "Error";
                    if ((double)value < lowerThreshold)
                    {
                        //red
                        return "/Red32.png";
                    }
                    else if ((double)value > upperThreshold)
                    {
                        //green
                        return "/Green32.png";
                    }
                    else
                    {
                        //amber
                        return "/Amber32.png";
                    }
                }
            }
        }
        return "Error";
    }
    public object ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        return "Not Possible";
    }
}

任何关于更好方法的建议都将不胜感激,

感谢

编辑

决定使用以下代码,服务器返回以下结构

public class ScoreInformation
{
    public double Score { get; set; }
    public double lowerThreshold { get; set; }
    public double upperThreshold { get; set; }
}

这是转换并显示正确图像的代码

    public object Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        if (value is ScoreInformation)
        {
            ScoreInformation si = (ScoreInformation)value;
            if (si.Score < si.lowerThreshold)
            {
                return "Red32.png";
            }
            else if (si.Score > si.upperThreshold)
            {
                //green
                return "Green32.png";
            }
            else
            {
                //amber
                return "Orange32.png";
            }
        }
        return "Grey32.png";
    }

Silverlight使用阈值转换值

这当然是一种方法,尤其是如果每次使用绑定时范围都会更改,但是,如果要反复使用相同的值,则可以在值转换器上声明属性,并在初始化时设置它们。

public int upperThreshold { get; set; }
public int lowerThreshold { get; set; }
public string lowImage { get; set; }
public string middleImage { get; set; }
public string highImage { get; set; }
public object Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        if (value is double)
        {
            if ((double)value < lowerThreshold)
            {
                //red
                return lowImage;
            }
            else if ((double)value > upperThreshold)
            {
                //green
                return highImage;
            }
            else
            {
                //amber
                return middleImage;
            }
        }
        return "Error";
    }
    public object ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        return "Not Possible";
    }
}
<local:RangeToImageConverter
    x:Name="MyRangeConverter"
    upperThreshold="30"
    lowerThreshold="50"
    lowImage="/red32.png"
    middleImage="/amber32.png"
    highImage="/green32.png"
    />