Click here to Skip to main content
15,891,136 members
Articles / Desktop Programming / WPF

PolyStar - WPF Polygons and Stars

Rate me:
Please Sign up or sign in to vote.
4.88/5 (32 votes)
27 Sep 2008CPOL4 min read 82.5K   2K   44  
Control and tool for the creation of various stars and polygons.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Data;
using System.Diagnostics;
using PolygonImageLib;
namespace PolygonBuilder
{

    public class EShapeTypeConverter : IValueConverter<EShapeType> { }

    public class IValueConverter<T> : System.Windows.Data.IValueConverter 
    {  
        #region IValueConverter Members

        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            try
            {
                T paramVal = (T)Enum.Parse(typeof(T), parameter.ToString(), true);
                bool result = (System.Convert.ToInt32(value) == System.Convert.ToInt32(paramVal));
                return result;
            }
            catch (Exception ex)
            {
                Debug.WriteLine(ex.Message);
                return true;
            }
        }

        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            T paramVal = (T)Enum.Parse(typeof(T), parameter.ToString(), true);
            return paramVal;
        }

        #endregion
    }
}

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 (Senior)
United States United States
Written software for what seems like forever. I'm currenly infatuated with WPF. Hopefully my affections are returned.

Comments and Discussions