K Ken Williams May 25, 2007 #1 By default a Form is resizeable. How do I prevent the resizing of a Form ? Ken
A Ashot Geodakov May 25, 2007 #2 A form has a "FormBorderStyle" property, which you can change in the design mode in the Properties window.
A form has a "FormBorderStyle" property, which you can change in the design mode in the Properties window.
N nano2k May 25, 2007 #3 form.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle You may also hide the minimize and maximize buttons: In form designer set to false the following 2 properties: MinimizeBox and MaximizeBox Ken Williams a scris:
form.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle You may also hide the minimize and maximize buttons: In form designer set to false the following 2 properties: MinimizeBox and MaximizeBox Ken Williams a scris:
M Moty Michaely May 25, 2007 #4 A form has a "FormBorderStyle" property, which you can change in the design mode in the Properties window. --http://www.rackaroo.com Click to expand... Hi, Furthermore (without changing the border style), You can set the minimum and maximum size of the window to be the same. Moty
A form has a "FormBorderStyle" property, which you can change in the design mode in the Properties window. --http://www.rackaroo.com Click to expand... Hi, Furthermore (without changing the border style), You can set the minimum and maximum size of the window to be the same. Moty