imagecombobox vb.net code example
Example: imagecombobox vb.net
''' <summary>
''' Returns the items in the ImageComboBoxItemCollection to be used in the ImageComboBox.
''' </summary>
<DesignerSerializationVisibility(DesignerSerializationVisibility.Content)> _
Public Overloads ReadOnly Property Items() As ImageComboBoxItemCollection
Get
Return _Items
End Get
End Property
''' <summary>
''' The original items from the ImageComboBox that will never been seen.
''' </summary>
Private ReadOnly Property baseItems() As ObjectCollection
Get
Return MyBase.Items
End Get
End Property