Question windows events

eHaviv

New member
Joined
Mar 12, 2021
Messages
1
Programming Experience
Beginner
what is the difference between
enter event and mouseenter event
 
Firstly, please don't post the same question multiple times. New members have to have their first few posts approved by a mod, which you would have been told at the time, so that's why your question didn't show up immediately.

Secondly, please post in the most appropriate forum for the topic. This question is specific to Windows Forms so I have moved the thread to the Windows Forms forum.
 
As for the question, the documentation explains every type and member available via .NET. They won't always give you everything you need but they should always be the first place you look:

Control.Enter

Control.MouseEnter

I won't bother reproducing what you can find there so check that out and post back with a specific question if you don't understand something.

For future reference, you should definitely bookmark/favourite the documentation home page, although you can get to that using the the Help menu in VS and then a few clicks. You should also make copious use of context-sensitive Help in VS. In this case, you could have clicked on one of those events in code or the Properties window and been taken directly to the documentation page for that event.
 
Back
Top Bottom