Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Winforms difference between DoubleClick event and MouseDoubleClick event

Tags:

c#

winforms

Quick question here: As the title says, what's the difference between the two events?

As far as I can tell, MouseDoubleClick is inherited from Control, while DoubleClick is inherited from Component, but is there any functional difference between the two?

Thanks

like image 399
Gal Avatar asked Oct 11 '11 11:10

Gal


1 Answers

From the MSDN Documentation:

DoubleClick events are logically higher-level events of a control. They may be raised by other user actions, such as shortcut key combinations.

like image 196
James Avatar answered Sep 29 '22 21:09

James