Example #1
0
 /// <summary>
 /// Creates a new <see cref="ImageComboBox"/>
 /// initialized to its default state.
 /// </summary>
 public ImageComboBox()
     : base()
 {
     this.source = OwnerDrawnStyleSource.ManagerSource;
     InitializeComponent();
     items = new ImageComboBox.ImageObjectCollection(this);
     this.SetItemsCore(items);
 }
Example #2
0
 /// <summary>
 /// Creates a new <see cref="ImageCheckedListBox"/>
 /// initialized to its default state.
 /// </summary>
 public ImageCheckedListBox()
     : base()
 {
     this.source = OwnerDrawnStyleSource.ManagerSource;
     InitializeComponent();
     items = new ImageCheckedListBox.ImageObjectCollection(this);
     this.SetItemsCore(items);
     this.looseTransparencyColor = Color.Transparent;
 }