private void comboBoxEdit1_Popup(object sender, EventArgs e)
        {
            PopupListBoxForm form = (sender as IPopupControl).PopupWindow as PopupListBoxForm;

            form.ListBox.MouseMove  += ListBox_MouseMove;
            form.ListBox.MouseLeave += ListBox_MouseLeave;
        }
 public CustomPopupListBox(PopupListBoxForm owner)
     : base(owner)
 {
 }
示例#3
0
 public MyPopupListBox(PopupListBoxForm ownerForm) : base(ownerForm)
 {
 }
 public MRUComboBoxEditPopupListBox(PopupListBoxForm ownerForm)
     : base(ownerForm)
 {
 }
 public PopupImageComboBoxEditListBoxEx(PopupListBoxForm popupListBoxForm_0) : base(popupListBoxForm_0)
 {
     base.Paint    += new PaintEventHandler(this.PopupImageComboBoxEditListBoxEx_Paint);
     base.DrawItem += new ListBoxDrawItemEventHandler(this.PopupImageComboBoxEditListBoxEx_DrawItem);
 }