Form.DesktopBounds 属性

获取或设置 Windows 桌面上窗体的大小和位置。

**命名空间:**System.Windows.Forms
**程序集:**System.Windows.Forms(在 system.windows.forms.dll 中)

语法

声明
Public Property DesktopBounds As Rectangle
用法
Dim instance As Form
Dim value As Rectangle

value = instance.DesktopBounds

instance.DesktopBounds = value
public Rectangle DesktopBounds { get; set; }
public:
property Rectangle DesktopBounds {
    Rectangle get ();
    void set (Rectangle value);
}
/** @property */
public Rectangle get_DesktopBounds ()

/** @property */
public void set_DesktopBounds (Rectangle value)
public function get DesktopBounds () : Rectangle

public function set DesktopBounds (value : Rectangle)

属性值

Rectangle,它使用桌面坐标表示 Windows 桌面上窗体的边界。

备注

桌面坐标基于屏幕的工作区,该区域不包括任务栏。桌面的坐标系基于像素。如果应用程序在多监视器系统上运行,则该窗体的坐标是组合桌面的坐标。

可使用此属性相对 Windows 桌面上的其他窗体或应用程序调整某窗体的大小和位置。

示例

下面的代码示例设置窗体的大小和位置,使窗体位于距桌面左边框 50 个像素、距桌面顶部 50 个像素的位置。此示例要求在窗体类内定义方法。

Public Sub MoveMyForm()
    ' Create a Rectangle object that will be used as the bound of the form.
    Dim tempRect As New Rectangle(50, 50, 100, 100)
    '  Set the bounds of the form using the Rectangle object.
    DesktopBounds = tempRect
End Sub 'MoveMyForm
public void MoveMyForm()
 {
    // Create a Rectangle object that will be used as the bound of the form.
    Rectangle tempRect = new Rectangle(50,50,100,100);
    //  Set the bounds of the form using the Rectangle object.
    this.DesktopBounds = tempRect;
 }
   
public:
   void MoveMyForm()
   {
      // Create a Rectangle object that will be used as the bound of the form.
      Rectangle tempRect = Rectangle( 50, 50, 100, 100 );
      // Set the bounds of the form using the Rectangle object.
      this->DesktopBounds = tempRect;
   }
public void MoveMyForm()
{
    // Create a Rectangle object that will be used as the bound of 
    // the form.
    Rectangle tempRect = new Rectangle(50, 50, 100, 100);

    //  Set the bounds of the form using the Rectangle object.
    this.set_DesktopBounds(tempRect);
} //MoveMyForm

平台

Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

请参见

参考

Form 类
Form 成员
System.Windows.Forms 命名空间
DesktopLocation