Click here to Skip to main content
15,895,813 members
Articles / Mobile Apps / Windows Phone 7

Custom Gauge Controls for Windows Phone 7: Part III

Rate me:
Please Sign up or sign in to vote.
4.85/5 (35 votes)
25 Feb 2013CPOL14 min read 70.6K   1.5K   48  
This article is the third in the series that describes a set of gauge controls for WP7. This article focuses on the implementation of the indicators used with the gauges.
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.Collections.ObjectModel;
using System.Windows.Data;
using System.Windows.Markup;

namespace WPClientV2
{
    [ContentProperty("Ranges")]
    public class RangeTemplateConverter:IValueConverter
    {
        public ObservableCollection<TemplateRange> Ranges { get; set; }
        public DataTemplate DefaultTemplate { get; set; }
        public RangeTemplateConverter()
        {
            Ranges = new ObservableCollection<TemplateRange>();
        }
        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 Ranges[i].Template;
            }
            return DefaultTemplate;
        }

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

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Romania Romania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions