如何在c#表单上禁用最大化按钮

NDG*_*DGO 1 c# visual-studio-2012

如何禁用C#表单上的最大化按钮?

在此输入图像描述

Sri*_*vel 9

您需要设置MaximizeBox为false

this.MaximizeBox = false;//this is an instance of Form or its decendant
Run Code Online (Sandbox Code Playgroud)