Click here to Skip to main content
15,884,388 members
Articles / Desktop Programming / MFC
Article

Owner Draw List Box with Icons and Text

Rate me:
Please Sign up or sign in to vote.
4.38/5 (8 votes)
14 Sep 2002 139.8K   5.4K   56   11
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


Written By
Web Developer
Taiwan Taiwan
I'm a software engineer for a R&D department developing specialised user interface software for the automation industry.

I enjoy coding and researching algorithm.

Comments and Discussions

 
Questionobvious vestigial while mouse wheel scrolling Pin
jonney309920-Jan-15 20:47
jonney309920-Jan-15 20:47 
Generalgood articl Pin
jksnt_199919-Dec-12 18:11
jksnt_199919-Dec-12 18:11 
QuestionMemory Leak? Pin
basti271128-Nov-07 4:49
basti271128-Nov-07 4:49 
GeneralEditable Listbox Pin
basti27117-Jun-07 22:08
basti27117-Jun-07 22:08 
QuestionHow can i load icons fron the specified filepath directly. Pin
phani130212-Apr-07 20:12
phani130212-Apr-07 20:12 
QuestionMore Doubts from this article.. Pin
klvin16-Jan-07 20:13
klvin16-Jan-07 20:13 
GeneralMore Doubts from this article.. Pin
klvin16-Jan-07 20:00
klvin16-Jan-07 20:00 
QuestionHow can I add icons to listbox without using MFC Pin
p_peto2-Jun-05 23:50
p_peto2-Jun-05 23:50 
AnswerRe: How can I add icons to listbox without using MFC Pin
n_vas10-Nov-06 8:52
n_vas10-Nov-06 8:52 
General16*16 icons Pin
anderslundsgard23-Sep-04 3:13
anderslundsgard23-Sep-04 3:13 
GeneralA few minor problems... Pin
12-Sep-02 0:52
suss12-Sep-02 0:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.