Control.DefaultSize 属性

定义

获取控件的默认大小。

protected:
 virtual property System::Drawing::Size DefaultSize { System::Drawing::Size get(); };
protected virtual System.Drawing.Size DefaultSize { get; }
member this.DefaultSize : System.Drawing.Size
Protected Overridable ReadOnly Property DefaultSize As Size

属性值

Size

控件的默认 Size

示例

下面的代码示例将重写 DefaultSize 该属性,并将默认大小设为 500 像素方形。

protected:
   property System::Drawing::Size DefaultSize 
   {
      virtual System::Drawing::Size get() override
      {
         // Set the default size of
         // the form to 500 pixels square.
         return System::Drawing::Size( 500, 500 );
      }
   }
protected override Size DefaultSize
{
   get
   {
      // Set the default size of
      // the form to 500 pixels square.
      return new Size(500,500);
   }
}
Protected Overrides ReadOnly Property DefaultSize() As Size
   Get
      ' Set the default size of
      ' the form to 500 pixels square. 
      Return New Size(500, 500)
   End Get
End Property

注解

DefaultSize 属性表示 Size 最初创建控件时的控件。 可以通过设置 Size 控件的属性值来调整控件的大小。

备注

若要保持更好的性能,请不要在其构造函数中设置 Size 控件。 首选方法是重写 DefaultSize 属性。

备注

在 Windows Server 2003 系统上,大小 Form 受监视器的最大像素宽度和高度的限制。

继承者说明

重写 DefaultSize 派生类中的属性时,最好返回具有所需维度的某个属性 Size ,而不是重写所有实现。

适用于

另请参阅