C#中一个form的宽/高度的最大值,不能比它所运行的电脑上的屏幕的分辨率多于12 pixel 。所以程序中要先读取电脑的分辨率,再做判断。
csdn原文地址和从该地址拷贝的内容:
https://msdn.microsoft.com/en-us/library/25w4thew.aspx
Form.Size Property
Gets or sets the size of the form.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Remarks
This property allows you to set both the height and width (in pixels) of the form at the same time instead of setting the Height and Width properties individually. If you want to set the size and location of a form, you can use the DesktopBounds property to size and locate the form based on desktop coordinates or use the Bounds property of the Control class to set the size and location of the form based on screen coordinates.
![]() |
---|
The maximum value of this property is limited by the resolution of the screen on which the form runs. The value cannot be greater than 12 pixels over each screen dimension (horizontal + 12 and vertical + 12). |
![]() |
---|
On Pocket PC devices, you can create a resizable window by setting FormBorderStyle to Noneand removing any MainMenu control. On SmartPhone devices, you can never resize a Form - it will always fill the entire screen. |
Examples
The following code example demonstrates how to create a form that is displayed with an opacity level of 75 percent. The example code creates a new form that is positioned in the center of the screen with an Opacity property set to change the opacity level of the form. The example code also sets the Size property to provide a larger sized form than the default size of the form. This example requires that the method defined in this example is called from another form in an event handler or other method.
private void CreateMyOpaqueForm() { // Create a new form. Form form2 = new Form(); // Set the text displayed in the caption. form2.Text = "My Form"; // Set the opacity to 75%. form2.Opacity = .75; // Size the form to be 300 pixels in height and width. form2.Size = new Size(300,300); // Display the form in the center of the screen. form2.StartPosition = FormStartPosition.CenterScreen; // Display the form as a modal dialog box. form2.ShowDialog(); }
Version Information
Available since 1.1