Creating HotSpots in C#

前端 未结 4 502
南笙
南笙 2021-01-24 00:23

... Is it possible to create hot-spots in C# so that when the mouse is over a certain area an event gets triggered?

4条回答
  •  长发绾君心
    2021-01-24 01:29

    You can use WndProc to capture windows messages, or you could use GetCursorPos to get the cursor position on the screen.

提交回复
热议问题