Form.Location 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
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
属性值
- 属性
注解
Point 是一个 结构,这意味着它是一个值类型。 如果在 中 Point访问属性,则会返回该属性的副本。 因此,更改X从 Location 属性返回的 Point 的 或 Y 属性不会影响 的 Left、Right、 Top或 Bottom 属性值Form。 若要调整这些属性,请单独设置每个属性值,或使用新的 Point设置属性Location。
属性 Location 获取或设置 Location 基类的 Control 属性,并将 Bindable 属性设置为 true
。