Click, DoubleClick vs MouseClick and MouseDoubleClick events.

I just found out that there are 4 events similar names for NotifyIconthe name Click, DoubleClick, MouseClickand MouseDoubleClick. The text of the description for them reads:

Occurs when a component (twice) clicked [with the mouse].

But what else can you click on elements with the mouse?

I tried to click it with the mouse and click Enterafter some complicated actions with arrows and tabs. A mouse click triggers both events, but a click Entertriggers an event Click.

What are the differences between these two pairs of events?

+3
source share
1 answer

, WinForm, MSDN Control.Click:

, ..

Click EventArgs , , . (, , ), MouseClick. MouseClick , , , , ENTER.

Click EventArgs , , . (, , ), MouseClick. MouseClick , , , , ENTER.

, , :

  • MouseDown.
  • .
  • MouseClick.
  • MouseUp.

+3

All Articles