Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can the hover interval be changed?

Tags:

c#

hover

winforms

I have code that allows a user to hover over a control, and it will respond. However, I'd like the hovering to fire a little quicker. Is there a way to speed up the hover reaction?

like image 348
B. Clay Shannon-B. Crow Raven Avatar asked Apr 26 '12 19:04

B. Clay Shannon-B. Crow Raven


Video Answer


1 Answers

There is an intentional time delay of SystemInformation.MouseHoverTime milliseconds before the MouseHover event is generated, as a simple alternative you can use the MouseEnter event instead, which will trigger immediately.

like image 194
Stigz Avatar answered Oct 18 '22 01:10

Stigz