Click here to Skip to main content
15,885,278 members
Articles / Programming Languages / C#

Show Image in Combo Box

Rate me:
Please Sign up or sign in to vote.
4.85/5 (9 votes)
3 Feb 2010CPOL 22K   21   2
Add images in combo box

It is very easy to add images in combo box. .NET provides an easy way to add an image. Here is an example code.

C#
public static void BindTaskPriorityCombo(ComboBox priorityCombo, bool addEmpty)
{
   priorityCombo.DrawMode = DrawMode.OwnerDrawVariable;
   priorityCombo.DrawItem += new DrawItemEventHandler(priorityCombo_DrawItem);
   priorityCombo.Items.Clear();

   if (addEmpty)
   {
       priorityCombo.Items.Add("");
   }

   string[] priorities = {"High", "Medium", "Low"};
   foreach (string priority in priorities )
   {
       priorityCombo.Items.Add(priority);
   }
}
C#
static void priorityCombo_DrawItem(object sender, DrawItemEventArgs e)
{
   if (e.Index >= 0)
   {
       ComboBox cmbPriority = sender as ComboBox;
       string text = cmbPriority.Items[e.Index].ToString();
       e.DrawBackground();

       if (text.Length > 0)
       {
           string priority = text;
           Image img = GetTaskPriorityImage(priority);

           if (img != null)
           {
               e.Graphics.DrawImage(img, e.Bounds.X, e.Bounds.Y, 15, 15);
           }
       }

       e.Graphics.DrawString(text, cmbPriority.Font, System.Drawing.Brushes.Black,
                                   new RectangleF(e.Bounds.X + 15, e.Bounds.Y,
                                   e.Bounds.Width, e.Bounds.Height));

       e.DrawFocusRectangle();
   }
}
C#
 public static Image GetTaskPriorityImage(string priority)
 {
    switch (priority)
    {
        case "High":
        {
            return Properties.Resources.High_Priority;
        }
        case "Low":
        {
            return Properties.Resources.Low_Priority;
        }
        case "Medium":
        {
            return Properties.Resources.Medium_Priority;
        }
    }

    return null;

}

Call BindTaskPriorityCombo() method to bind priority combo box. Set priorityCombo.DrawMode = DrawMode.OwnerDrawVariable and register Draw item event of combo box using priorityCombo.DrawItem += new DrawItemEventHandler(priorityCombo_DrawItem) from drawing image in combo box item.

For more, read my article: Task Manager.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer
Pakistan Pakistan
Passion and positive dedication is essential part of success. I believe on hardworking and sharing knowledge with others. I always try to be a better than I am and think positive for positive result.

My Blogs

My Linked-In Profile

Comments and Discussions

 
GeneralMy vote of 5 Pin
Mark Guo1-Feb-11 12:35
Mark Guo1-Feb-11 12:35 
GeneralMy vote of 5 Pin
Member 62925519-Jul-10 20:26
Member 62925519-Jul-10 20:26 
とてもわかりやすく。シンプルです。

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.