So, I have a situation in windows forms (Visual Studio / C#) that is similar to this :
Right now, as you can see, there is no sufficient space beside picturebox number 3 to fit picturebox number 4. However, if the user stretches the form to the right, there will be enough space.
My doubt: Is there an easy way to make picturebox number 4 move up if, after the user stretches the form, there is enough space? I tried all kinds of anchors, but it does not go up. It goes to the right as the form stretches, but does not move up beside picturebox 3.
Thank you all.