Click here to Skip to main content
15,867,985 members
Articles / Desktop Programming / WPF

WPF Color Picker Construction Kit

Rate me:
Please Sign up or sign in to vote.
4.97/5 (59 votes)
26 Dec 2010CPOL9 min read 115.5K   7.7K   76  
A WPF color picker (like Adobe's) constructed in a modular fashion for easy modification.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Media;

namespace ColorPicker.ColorModels
{
   public abstract class ColorComponent
    {
        //The largest possible value for a component (value when slider at top)
        public abstract int MaxValue { get; }

        //The smallest possible value for a component (value when slider at bottom)
        public abstract int MinValue { get; }

       //The value of the component for a given color
        public abstract int Value(Color color);

       //The name of the color component (used to avoid reflection)
        public abstract string Name{ get; }
    }
}

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