I want to disable Minimize and Maximize buttons of child form. There should be only close button.
Note : I disable Maximize and minimize buttons from property window. But I didn't work.
I want to disable Minimize and Maximize buttons of child form. There should be only close button.
Note : I disable Maximize and minimize buttons from property window. But I didn't work.
Try this
var f = new Form();
f.MinimizeBox = false;
f.MaximizeBox = false;
f.Show();