How do I disable the maximize button on a C# form?
Asked
Active
Viewed 1.7k times
1
-
1possible duplicate of [Disabling Minimize & Maximize On WinForm?](http://stackoverflow.com/questions/3025923/disabling-minimize-maximize-on-winform) – squillman Sep 09 '13 at 19:41
2 Answers
9
You need to set MaximizeBox
to false
this.MaximizeBox = false;//this is an instance of Form or its decendant

Sriram Sakthivel
- 72,067
- 7
- 111
- 189
-
yes, you are correct. Sorry for my eng. I live in not englishspeakin country – NDGO Sep 09 '13 at 19:42
-
-