Color Wheel

Fully implemented BCGControlBar Pro (MFC)

Fully implemented BCGSuite (MFC)

Not available BCGControlBar for .NET

A color wheel (ring) control implements a selectable color spectrum. It provides the following features and benefits:

  • Ability to add multiple colors.
  • Draw lines from the color cursor to the center.
  • The control luminosity synchronizes with the chosen color's luminosity.
You have the ability to specify the hue direction and starting angle.

Color Wheel

Sample code:

CBCGPColorPickerCtrl m_wndColorWheel;
...
m_wndColorWheel.SetType(CBCGPColorPickerCtrl::PICKER_WHEEL);
m_wndColorWheel.EnableLinesToCenter();

CArray<COLORREF, COLORREF> arColors;
// Setup colors array
...
m_wndColorWheel.SetColors(arColors);