It is possible to put some kind of hotspots in a graphical picture using a PictureBox? I want to interact with the mouse... there's a way to do this?
Printable View
It is possible to put some kind of hotspots in a graphical picture using a PictureBox? I want to interact with the mouse... there's a way to do this?
Yeah, just test the mouse coordinates from inside the mousemove event of the picturebox.
VB Code:
if e.x >= 20 andalso e.x < 120 and also e.y >= 20 andalso e.y < 120 then 'do something end if