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" /> ...