Answers for "imagecombobox vb.net"

0

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
Posted by: Guest on February-20-2021

Browse Popular Code Answers by Language