I need to be able to check if the mouse is within a certain area on the form continuously. I want to be able to do this without the use of a timer, though. How would I go about doing this?
I'm using C# btw.
|
I need to be able to check if the mouse is within a certain area on the form continuously. I want to be able to do this without the use of a timer, though. How would I go about doing this? I'm using C# btw. | |||||||
feedback
|
|
Have you tried attaching a handler to the | |||
|
feedback
|
|
If the area is a screen control, you can use | |||
feedback
|
|
If hooking the MouseMove event triggers too often - or if you want to avoid hooking that event on every form, consider hooking the Application.Idle event instead. This event fires every time the application is about to go idle - all pending messages (including repaints) have been processed and there's nothing left to do. In most WinForms applications, this happens several times a second, providing a good way to do "just in time" processing. | |||
|
feedback
|
|
You need to define events over that area. Use
| |||
|
feedback
|
|
I think the mouse events suggested by others is the best solution, but as another alternative to timers, you could write a small function to check the mouse and then keep invoking it on your main window dispatcher with an "application idle" priority. This will continuously run your check without freezing the UI. Again, hooking into the mousemove event is still a cleaner solution, IMO. | |||
|
feedback
|