I have to implement a solution for which I’m not really sure how to proceed as I don’t know this language (C#) very well.
Let me explain :
The goal is to have something that allows the user to choose a zone from an item (which has a circular form).
So the idea was put an image with numbers on the zone (so in the end it would look like a clock), and get the zone from the number the user would click.
So my question is : is it possible to create clickable zones in an image ?
(Or if you have another solution for this functionnality, I’m open-minded)
Thanks in advance !
EDIT >> This is for a WinForm application, not a website.
Thanks you all for your answers, there are interesting things in them.
Unfortunately, as I had to develop this very fast, I just created an image on which I would catch the onclick event and then catch the zones the user clicked using Cursor.Position like this :
Maybe not the “cleaner” way to do it, but it works !
Thanks anyway !