views:

226

answers:

2

Hello, anybody know any .Net freeware control for color selection (color dialog) that supports RGB, HSL and CMYK color models.

I'm looking for something like this.

alt text alt text

Thanks.

A: 

This things are too specialized to be in the open. But you can take a look at Paint.net sources for at least HSV color wheel and other color-related utility classes and functions. Old versions (I've linked to 3.05) are under MIT license and you can borrow code from there.

Dmitry
+1  A: 

Not exactly the same, but a very good color picker I found was at CodeProject. I use this one without problems in one of my applications:

http://beta.codeproject.com/KB/miscctrl/colorwheelv1.aspx

These two support all the three color models you want:

http://beta.codeproject.com/KB/cpp/adobe%5Fcp%5Fclone%5Fpart%5F1.aspx http://beta.codeproject.com/KB/miscctrl/ZetaColorEditor.aspx

Although the first is better looking and is better in functionality.

Yogesh
Thanks very much
RRUZ