1

How do I disable the maximize button on a C# form?

enter image description here

tnw
  • 13,521
  • 15
  • 70
  • 111
NDGO
  • 51
  • 1
  • 1
  • 8
  • 1
    possible 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 Answers2

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
0

Simply Change Settings in Properties - MaximizeBox --> false;

BALA s
  • 169
  • 1
  • 9