For some reason if you set both of the width and the height of Form.MaximumSize to zero it will let you have an unrestricted window size, however if you want to set a limit
Use INT_MAX since that's the theoretical limit that can be represented by a Size anyway:
Size
//Max width 200, unlimited height this.MaximumSize = new Size(200, int.MaxValue);