Reputation: 331
I've attached a MouseClick callback function to a System.Windows.Form.Panel. It seems that the click rate is limited to 3~4 mouse clicks per second. How do I remove/increase this limit?
Upvotes: 0
Views: 201
Reputation: 1276
Try using the MouseDown event instead. I think the MouseClick event has to differentiate between a simple click and the double-click (and therefore might have a delay).
Upvotes: 1