ghiboz
ghiboz

Reputation: 8003

c# winform cool colordialog

I'm working on winforms with .net 4.0 and I need to let the user to choose a color. The default colorpicker is very ugly.. does anybody knows someone cool for winforms??

googling i've found only for wpf forms, a cool is this:

extended wpf controls, but is for wpf...

I wish a simple circle with the colors, like photoshop..

in my mind I wish also something like this:

enter image description here

or better this:

enter image description here

thanks in advance!

Upvotes: 4

Views: 4591

Answers (3)

Creek Drop
Creek Drop

Reputation: 594

I was looking for something similar to the first screenshot of the question. The one I found on codeproject looks exact what you are looking for. It is based on WinForms and has almost all required controls within.

Screenshot - Color Picker WinForms

Upvotes: 1

sacha barber
sacha barber

Reputation: 2333

You can still use the WPF one which you could host as a control within a windows form. The WPF/Winforms integration is pretty cool : You can read more about it over here (at my blog actually) : http://sachabarbs.wordpress.com/2008/02/26/winforms-wpf-interop/

You may need to jiggle the WPF color picker a little to expose a property for color which is accessable from the hosting winforms form, which you would show as a dialog

Upvotes: 4

whastupduck
whastupduck

Reputation: 1166

You can take a look at DevExpress' ColorEdit here

Upvotes: 3

Related Questions