# Adding Images to Items in the ComboBox

Now, you can easily add images to items in a Combobox control. Read to know more about this topic.

## Content



You can easily use the images from the ImageList to add images to each item in the dropdown list of a C1ComboBox control.

To add images to C1ComboBoxItems at Design time, complete the following:

1.  Add the C1ComboBox control to your form.
2.  Add items to C1ComboBox.Items collection using the String Collection Editor.
3.  Add the ImageList control to your form.
4.  Add images to the imageList1.
5.  Set keys (Name) of the images equal to the items in C1ComboBox.Items.

To add images to C1ComboBoxItems at Run time, add the following code:

DOC-DETAILS-TAG-OPEN

DOC-SUMMARY-TAG-OPEN

To write code in Visual Basic

DOC-SUMMARY-TAG-CLOSE

```vbnet
c1ComboBox1.ItemsImageList = imageList
                    imageList.Images.Add("First item", Image.FromFile("First.png"))
                    c1ComboBox1.Items.Add("First item")
```

DOC-DETAILS-TAG-CLOSE

DOC-DETAILS-TAG-OPEN

DOC-SUMMARY-TAG-OPEN

To write code in C#

DOC-SUMMARY-TAG-CLOSE

```csharp
c1ComboBox1.ItemsImageList = imageList;
                    imageList.Images.Add("First item", Image.FromFile("First.png"));
                    c1ComboBox1.Items.Add("First item");
```

DOC-DETAILS-TAG-CLOSE

## See Also

[Adding Items to C1ComboBox](/componentone/docs/win/online-input/usingthec1inputcontr/c1inputcontrols/C1ComboBoxControlOverview/comboAddingItemstoComboBox)