I am trying to create a Winforms application and on one of the screens, I have an image and some buttons generated at runtime. Now I want these buttons to always be proportional to the image.
for example, the Hand1 button should always stay where Image Hand1 is
This is my original image.

but when you resize the form, it becomes like

I want these buttons to not change their size and always remain proportional to the image.
ImageSizeMode images are StretchImage, and the buttons are not attached (otherwise they do not move and do not begin to stretch / contract.
How can I achieve this behavior.