Pra*_*ana 66
检查一下:
// Define the border style of the form to a dialog box.
form1.FormBorderStyle = FormBorderStyle.FixedDialog;
// Set the MaximizeBox to false to remove the maximize box.
form1.MaximizeBox = false;
// Set the MinimizeBox to false to remove the minimize box.
form1.MinimizeBox = false;
// Set the start position of the form to the center of the screen.
form1.StartPosition = FormStartPosition.CenterScreen;
// Display the form as a modal dialog box.
form1.ShowDialog();
Run Code Online (Sandbox Code Playgroud)
小智 15
尝试设置
this.MinimumSize = new Size(140, 480);
this.MaximumSize = new Size(140, 480);
Run Code Online (Sandbox Code Playgroud)
小智 10
用于防止调整大小事件的最小设置
form1.FormBorderStyle = FormBorderStyle.FixedDialog;
form1.MaximizeBox = false;
Run Code Online (Sandbox Code Playgroud)