using System; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Ink; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; using System.Windows.Data; using WPScadaControlsV2; using System.Collections.Generic; using System.Linq; using System.Collections.ObjectModel; using System.Windows.Markup; namespace WPClientV2 { [ContentProperty("Ranges")] public class RangeColorConverter:IValueConverter { public ObservableCollection<ColorRange> Ranges { get; set; } public Color DefaultColor { get; set; } public RangeColorConverter() { Ranges = new ObservableCollection<ColorRange>(); DefaultColor = Colors.White; } public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { double val = (double)value; for (int i = 0; i < Ranges.Count; i++) { if (Ranges[i].Minimum <val && val <= Ranges[i].Maximum) return new SolidColorBrush(Ranges[i].Color); } return new SolidColorBrush(DefaultColor); } public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw new NotImplementedException(); } } }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
Skills that self-taught computer programmers lack