Reputation: 51
How do I disable the maximize button on a C# form?
Upvotes: 1
Views: 17134
Reputation: 169
Simply Change Settings in Properties - MaximizeBox --> false;
Upvotes: 0
Reputation: 73442
You need to set MaximizeBox to false
MaximizeBox
this.MaximizeBox = false;//this is an instance of Form or its decendant
Upvotes: 9