Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Owner Draw List Box with Icons and Text

0.00/5 (No votes)
14 Sep 2002 1  
Easy to implementation Owner Draw List Box

Sample Image - _ListBoxCH.jpg

Introduction

The article presents an implementation of an owner drawn ListBox with the icon and text.

Before programming, you can use resource editor to create a list box template which properties must be set. Select Variable for owner draw and check Want key to input, then uncheck Sort and Has strings check box. Import your favorite icon to your project if you want to display in list box (the icon only support 32x32 dimension size image), then add ListBoxCH.h and ListBoxCH.cpp, two files to your project and add following line to the top where you want to use CListBoxCH:

#include "ListBoxCH.h"

Then add following statements to implement owner draw list box:

// attach dialog template to the CWnd object

m_ListBox.SubclassDlgItem(IDC_ICON_LIST,this);
// add item 

m_ListBox.AddItem("MFC",AfxGetApp()->LoadIcon(IDR_MAINFRAME));

Initial owner draw list box:

m_ListBox.SetCurSel(0);
// set default selected index.

The CListBoxCH has some operations. Member functions can set or change owner draw list box surface:

class CListBoxCH: public CListBox
{
    ...
// Operations

public:
    // set active selected color

    void SetSelColor(COLORREF clr);
    // set inactive background (unselected) color 

    void SetBgColor(COLORREF clr);
    // change or set current select index

    void SetCurSel(int curSel);
    // set text color

    void SetTextColor(COLORREF clr);
    //  display separator edge ?  

    void EnableEdge(BOOL bEnable); 
    // get current selected index

    int  GetCurSel(); 
    ...
}

Conclusion

This owner draw list box is very simple. You can add your code to this class or add other message handler to this class.

Happy programming!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here