图标选择器的组合框实现


日期: 2001-12-24 14:00 | 联系我
关注我: Telegram, Twitter

本程序介绍如何用组合框实现图标选择,其外观参见下图。

实现本程序方法如下:

  1. 在工程文件中包含IconComboBox.cpp和IconComboBox.h。
  2. 在资源编辑器中,创建一个一般的组合框,并设置它具有下面风格: DropList, OwnerDraw Variable, Has Strings。
  3. 用ClassWizard创建一个控件成员变量。
  4. 替换CComboBox为CIconComboBox。

在IconComboBox创建后,使用下面的方法来插入、选择和删除图标:

public:

virtual int AddIcon(LPCTSTR lpszIconFileName);

virtual int InsertIcon(int nIndex, LPCTSTR lpszIconFileName);

virtual int SelectIcon(LPCTSTR lpszIconFileName);

virtual int SelectIcon(int nIndex);

virtual int DeleteIcon(LPCTSTR lpszIconFileName);

virtual int DeleteIcon(int nIndex);

下面方法可以被重载,以按不同的方式绘制图标。缺省情况下是,图标在组合框中中对齐。

protected:

virtual void OnOutputIcon(LPDRAWITEMSTRUCT lpDIS, BOOL bSelected);

>>> DOWN !!! >>>下载源代码及演示程序


 文章评论
目前没有任何评论.

↓ 快抢占第1楼,发表你的评论和意见 ↓

当前页面是本站的 Google AMP 版本。
欲查看完整版本和发表评论请点击:完整版 »

 

程序员小辉 建站于 1997
Copyright © XiaoHui.com; 保留所有权利。