How do I turn off the user\'s ability to resize a Windows Forms form?
I\'m having it resize itself on a click.
More precisely, add the code below to the private void InitializeComponent() method of the Form class:
private void InitializeComponent()
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;