Imports GrapeCity.Web.Input.Core
' ImageListに画像を追加します。
Dim aII As ImageItem = New ImageItem
aII.Name = "Image0"
aII.URL = "image.png"
GcComboBox1.ImageList.Add(aII)
' 追加した画像をデフォルト画像として表示します。
GcComboBox1.ListBox.DefaultImageIndex = 0
GcComboBox1.ListBox.ShowItemImage = True
using GrapeCity.Web.Input.Core;
// ImageListに画像を追加します。
ImageItem aII = new ImageItem();
aII.Name = "Image0";
aII.URL = "image.png";
GcComboBox1.ImageList.Add(aII);
// 追加した画像をデフォルト画像として表示します。
GcComboBox1.ListBox.DefaultImageIndex = 0;
GcComboBox1.ListBox.ShowItemImage = true;