Click here to Skip to main content
15,889,216 members
Articles / Programming Languages / C#
Article

Where's the ImageCombo control?

Rate me:
Please Sign up or sign in to vote.
4.82/5 (43 votes)
18 Jan 20041 min read 284.9K   5.3K   103   54
ImageCombo control for .NET.

Sample Image - ImageCombo.NET

Introduction

When I started programming in .NET, I wondered where the ImageCombo control had gone (I used to program in VB6). The .NET Framework didn't seem to have this functionality built-in, but it's very easy to add it.

Using the code

The code consists of two classes: ImageCombo and ImageComboItem. If you want to use them in C#, just copy them into your project; for other .NET languages, you can add a reference to the library.

The control inherits from ComboBox and introduces one new member: the ImageList property, which doesn't require any further explanation. The control is owner drawn and there is a custom drawing method defined, so don't change its DrawMode property if you want to see the images.

The ImageComboItem class inherits from Object. You can set a customForeColor and it has a Mark property which determines if the item is shown in bold font style (does not work if owner font is already bold).

To add an item to an ImageCombo with text "Icon 0" and image index 0, use the following code:

C#
imageCombo.Items.Add(new ImageComboItem("Icon 0", 0));

Code listing: ImageCombo class

C#
using System;
using System.Drawing;

namespace System.Windows.Forms
{

    public class ImageCombo : ComboBox
    {
        private ImageList imgs = new ImageList();

        // constructor
        public ImageCombo()
        {
            // set draw mode to owner draw
            this.DrawMode = DrawMode.OwnerDrawFixed;    
        }

        // ImageList property
        public ImageList ImageList 
        {
            get 
            {
                return imgs;
            }
            set 
            {
                imgs = value;
            }
        }

        // customized drawing process
        protected override void OnDrawItem(DrawItemEventArgs e)
        {
            // draw background & focus rect
            e.DrawBackground();
            e.DrawFocusRectangle();

            // check if it is an item from the Items collection
            if (e.Index < 0)

                // not an item, draw the text (indented)
                e.Graphics.DrawString(this.Text, e.Font, 
                        new SolidBrush(e.ForeColor), e.Bounds.Left + 
                        imgs.ImageSize.Width, e.Bounds.Top);

            else
            {
                
                // check if item is an ImageComboItem
                if (this.Items[e.Index].GetType() == typeof(ImageComboItem)) 
                {                                                            

                    // get item to draw
                    ImageComboItem item = (ImageComboItem) 
                        this.Items[e.Index];

                    // get forecolor & font
                    Color forecolor = (item.ForeColor != 
                         Color.FromKnownColor(KnownColor.Transparent)) ? 
                         item.ForeColor : e.ForeColor;
                    Font font = item.Mark ? new Font(e.Font, 
                         FontStyle.Bold) : e.Font;

                    // -1: no image
                    if (item.ImageIndex != -1) 
                    {
                        // draw image, then draw text next to it
                        this.ImageList.Draw(e.Graphics, 
                           e.Bounds.Left, e.Bounds.Top, item.ImageIndex);
                        e.Graphics.DrawString(item.Text, font, 
                           new SolidBrush(forecolor), e.Bounds.Left + 
                           imgs.ImageSize.Width, e.Bounds.Top);
                    }
                    else
                        // draw text (indented)
                        e.Graphics.DrawString(item.Text, font, 
                            new SolidBrush(forecolor), e.Bounds.Left + 
                            imgs.ImageSize.Width, e.Bounds.Top);

                }
                else
                
                    // it is not an ImageComboItem, draw it
                    e.Graphics.DrawString(this.Items[e.Index].ToString(), 
                      e.Font, new SolidBrush(e.ForeColor), e.Bounds.Left + 
                      imgs.ImageSize.Width, e.Bounds.Top);
                
            }

            base.OnDrawItem (e);
        }
        
    }

}

Code listing: ImageComboItem class

C#
using System;
using System.Drawing;

namespace System.Windows.Forms
{

    public class ImageComboItem : object
    {
        // forecolor: transparent = inherit
        private Color forecolor = Color.FromKnownColor(
                KnownColor.Transparent);
        private bool mark = false;
        private int imageindex = -1;
        private object tag = null;
        private string text = null;        
        
        // constructors
        public ImageComboItem()
        {
        }

        public ImageComboItem(string Text) 
        {
            text = Text;    
        }

        public ImageComboItem(string Text, int ImageIndex)
        {
            text = Text;
            imageindex = ImageIndex;
        }

        public ImageComboItem(string Text, int ImageIndex, bool Mark)
        {
            text = Text;
            imageindex = ImageIndex;
            mark = Mark;
        }

        public ImageComboItem(string Text, int ImageIndex, 
            bool Mark, Color ForeColor)
        {
            text = Text;
            imageindex = ImageIndex;
            mark = Mark;
            forecolor = ForeColor;
        }

        public ImageComboItem(string Text, int ImageIndex, 
               bool Mark, Color ForeColor, object Tag)
        {
            text = Text;
            imageindex = ImageIndex;
            mark = Mark;
            forecolor = ForeColor;
            tag = Tag;
        }

        // forecolor
        public Color ForeColor 
        {
            get 
            {
                return forecolor;
            }
            set
            {
                forecolor = value;
            }
        }

        // image index
        public int ImageIndex 
        {
            get 
            {
                return imageindex;
            }
            set 
            {
                imageindex = value;
            }
        }

        // mark (bold)
        public bool Mark
        {
            get
            {
                return mark;
            }
            set
            {
                mark = value;
            }
        }

        // tag
        public object Tag
        {
            get
            {
                return tag;
            }
            set
            {
                tag = value;
            }
        }

        // item text
        public string Text 
        {
            get
            {
                return text;
            }
            set
            {
                text = value;
            }
        }
        
        // ToString() should return item text
        public override string ToString() 
        {
            return text;
        }

    }

}

History

  • Original code (01/10/2004)
  • Optimized code for speed & added some functionality (18/10/2004)

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
Belgium Belgium
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralImageCombo not show icon Pin
microlabs25-Oct-05 6:52
microlabs25-Oct-05 6:52 
QuestionBug with tabs? Pin
mrgrieves26-Aug-05 3:56
mrgrieves26-Aug-05 3:56 
AnswerRe: Bug with tabs? Pin
mrgrieves26-Aug-05 6:09
mrgrieves26-Aug-05 6:09 
GeneralRe: Bug with tabs? Pin
mrgrieves214-Aug-05 7:40
mrgrieves214-Aug-05 7:40 
GeneralHi, Niels Pin
iro197725-Jul-05 23:02
iro197725-Jul-05 23:02 
GeneralRe: Hi, Niels Pin
Niels Penneman26-Jul-05 5:36
Niels Penneman26-Jul-05 5:36 
GeneralNow tried 2 articles here which dosn't work. Pin
maunleif13-Dec-04 15:05
maunleif13-Dec-04 15:05 
GeneralRe: Now tried 2 articles here which dosn't work. Pin
Niels Penneman28-Feb-05 6:40
Niels Penneman28-Feb-05 6:40 
actually i never post anything from which i know it won't work. if you get this error and you can't solve it looking at everything here and the files you can download i have to accuse some of you to make yourself guilty to copy/paste coding. i'm afraid that's not the way how this works.
GeneralRe: Now tried 2 articles here which dosn't work. Pin
Robert Prouse23-Mar-05 3:57
Robert Prouse23-Mar-05 3:57 
GeneralRe: Now tried 2 articles here which dosn't work. Pin
Anonymous31-Jul-05 13:56
Anonymous31-Jul-05 13:56 
QuestionHow can i get the tag ? Pin
vbinfo3-Nov-04 8:09
vbinfo3-Nov-04 8:09 
AnswerRe: How can i get the tag ? Pin
bondu_raja3-Nov-04 9:23
bondu_raja3-Nov-04 9:23 
GeneralRe: How can i get the tag ? Pin
vbinfo3-Nov-04 21:55
vbinfo3-Nov-04 21:55 
GeneralRe: How can i get the tag ? Pin
vbinfo3-Nov-04 21:57
vbinfo3-Nov-04 21:57 
GeneralVB.NET Version Pin
bondu_raja1-Nov-04 9:43
bondu_raja1-Nov-04 9:43 
GeneralRe: VB.NET Version Pin
vbinfo3-Nov-04 7:57
vbinfo3-Nov-04 7:57 
QuestionRe: VB.NET Version Pin
shreekar7-Nov-06 20:18
shreekar7-Nov-06 20:18 
GeneralSeparator Bar between ImageComboItems Pin
steven york9-Sep-04 15:04
susssteven york9-Sep-04 15:04 
GeneralRe: Separator Bar between ImageComboItems Pin
Niels Penneman28-Feb-05 6:42
Niels Penneman28-Feb-05 6:42 
GeneralYou are Good Pin
Hossam Abbas11-Jul-04 13:18
Hossam Abbas11-Jul-04 13:18 
GeneralLoading image at runtime Pin
jameschoa8129-May-04 4:28
jameschoa8129-May-04 4:28 
Generalgood work Pin
WillemM22-May-04 9:19
WillemM22-May-04 9:19 
GeneralSize of icon Pin
agentbb0076-May-04 11:14
agentbb0076-May-04 11:14 
GeneralRe: Size of icon Pin
Niels Penneman16-May-04 2:13
Niels Penneman16-May-04 2:13 
GeneralASP.NET version Pin
Mikhail_Sh5-Mar-04 4:54
Mikhail_Sh5-Mar-04 4:54 

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.