Yamikuronue
Yamikuronue

Reputation: 758

Windows Forms Combobox mouseover events

I'm working with a .net application and the mouseover/hover events don't appear to be triggering unless I hover over the button that opens the dropdown box; no amount of hovering over the text entry position reliably triggers the event. Is there a workaround for this?

Upvotes: 1

Views: 948

Answers (1)

nawfal
nawfal

Reputation: 73163

Use the ComboBox.MouseEnter event rather. You can adjust the logic there in..

Upvotes: 3

Related Questions