Form.SetDesktopLocation(Int32, Int32) 方法

定义

以桌面坐标设置窗体的位置。

C#
public void SetDesktopLocation(int x, int y);

参数

x
Int32

窗体位置的 x 坐标。

y
Int32

窗体位置的 y 坐标。

示例

下面的示例演示如何使用 SetDesktopLocationLoadActivate 成员。 若要运行该示例,请将以下代码粘贴到名为 Form1 的窗体中,其中包含一个名为 的Button1按钮和两Label个名为 和 Label2Label1控件。

C#
static int x = 200;
static int y = 200;

private void Button1_Click(System.Object sender, 
    System.EventArgs e)
{
    // Create a new Form1 and set its Visible property to true.
    Form1 form2 = new Form1();
    form2.Visible = true;

    // Set the new form's desktop location so it  
    // appears below and to the right of the current form.
    form2.SetDesktopLocation(x, y);
    x += 30;
    y += 30;

    // Keep the current form active by calling the Activate
    // method.
    this.Activate();
    this.Button1.Enabled = false;
}

// Updates the label text to reflect the current values of x 
// and y, which was were incremented in the Button1 control's 
// click event.
private void Form1_Activated(object sender, System.EventArgs e)
{
    Label1.Text = "x: "+x+" y: "+y;
    Label2.Text = "Number of forms currently open: "+count;
}

static int count = 0;

private void Form1_Closed(object sender, System.EventArgs e)
{
    count -= 1;
}

private void Form1_Load(object sender, System.EventArgs e)
{
    count += 1;
}

注解

桌面坐标基于屏幕的工作区域,这不包括任务栏。 可以使用此方法在桌面上放置窗体。 由于桌面坐标基于窗体的工作区域,因此可以使用此方法确保窗体在桌面上完全可见。 此方法主要用于顶级表单; LayoutMdi 使用 方法将多文档接口定位 (MDI) 子窗体。

适用于

产品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

另请参阅