Form.Location 属性

定义

获取或设置以屏幕坐标表示的代表 Form 左上角的 Point

public:
 property System::Drawing::Point Location { System::Drawing::Point get(); void set(System::Drawing::Point value); };
[System.ComponentModel.SettingsBindable(true)]
public System.Drawing.Point Location { get; set; }
[<System.ComponentModel.SettingsBindable(true)>]
member this.Location : System.Drawing.Point with get, set
Public Property Location As Point

属性值

以屏幕坐标表示的代表 Form 左上角的 Point

属性

注解

Point 是一个 结构,这意味着它是一个值类型。 如果在 中 Point访问属性,则会返回该属性的副本。 因此,更改XLocation 属性返回的 Point 的 或 Y 属性不会影响 的 LeftRightTopBottom 属性值Form。 若要调整这些属性,请单独设置每个属性值,或使用新的 Point设置属性Location

属性 Location 获取或设置 Location 基类的 Control 属性,并将 Bindable 属性设置为 true

适用于

另请参阅