I have a winform application which contains a window resizable but one requirement is all UI items in the window should be resized according to size of the window. How can I achieve that?
I have a winform application which contains a window resizable but one requirement is
Share
Set the anchor properties on your controls. For example, if you set a control to anchor left and right, it’s width will change as it’s parent resizes. Same with top and bottom. Note, however, it will not resize, for example, the text inside a control.