CColorPickerCB类实现颜色选择和颜色名显示的功能。颜色可以在运行时间增加和删除,控件可以查询COLORREF,参见下图。
为了使用控件,创建具有"Owner Draw Fixed" 和 "Has Strings" 风格的下拉组合框,并添加CColorPickerCB到控件。
下面是 CColorPickerCB类的函数:
COLORREF GetSelectedColorValue(void) // Get Selected Color Value CString GetSelectedColorName(void); // Get Selected Color Name void SetSelectedColorValue(COLORREF crColor) // Set Selected Color Value void SetSelectedColorName(PCSTR cpColor); // Set Selected Color Name bool RemoveColor(PCSTR cpColor); // Remove Color From List bool RemoveColor(COLORREF crColor); // Remove Color From List int AddColor(PCSTR cpName, COLORREF crColor); // Insert A New Color
>>> DOWN !!! >>>下载源代码及演示程序