color-wheel

How to draw color wheel in WPF application?

I started to play with WPF and wanted to draw color wheel on a form. At first I tryed to use LinearGradientBrush on ArcSegment like this: <Path StrokeThickness="35" Height="150" Width="150"> <Path.Stroke> <LinearGradientBrush StartPoint="0,0" EndPoint="1,0"> <GradientStop Color="Red" Offset="0.15" /> ...

WPF Colour Picker/Wheel with Multiple Selection

I am looking for a free WPF Colour Picker/Wheel which has the ability to allow multiple colour selections. Does anything like this exist. The ones I have seen allow only one colour to be selected. I want to be able to easily select two or three colors. ...