B
Brian Takita
Hello,
Is it possible to disable the ComboBox DropDown ListBox control from the
OnDropDown override method?
I'm trying to use a ListView to popup, instead of a ListBox.
So far, I've been able to "disable" the dropdown by changing the focus
to the Listview
protected override void OnDropDown(System.EventArgs e) {
_popup.Show();
_popup.Focus();
base.OnDropDown(e);
}
However, the dropdown ListBox briefly flashes in front of the ListView.
Please let me know if you have a better solution. If there is a way to
set the dropdown box to a ListView control, that would be even better.
Thank you,
Brian Takita
Is it possible to disable the ComboBox DropDown ListBox control from the
OnDropDown override method?
I'm trying to use a ListView to popup, instead of a ListBox.
So far, I've been able to "disable" the dropdown by changing the focus
to the Listview
protected override void OnDropDown(System.EventArgs e) {
_popup.Show();
_popup.Focus();
base.OnDropDown(e);
}
However, the dropdown ListBox briefly flashes in front of the ListView.
Please let me know if you have a better solution. If there is a way to
set the dropdown box to a ListView control, that would be even better.
Thank you,
Brian Takita