LinkLabel.SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified) 方法

定义

执行设置该控件边界的工作。

protected:
 override void SetBoundsCore(int x, int y, int width, int height, System::Windows::Forms::BoundsSpecified specified);
protected override void SetBoundsCore (int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified);
override this.SetBoundsCore : int * int * int * int * System.Windows.Forms.BoundsSpecified -> unit
Protected Overrides Sub SetBoundsCore (x As Integer, y As Integer, width As Integer, height As Integer, specified As BoundsSpecified)

参数

x
Int32

控件的新左边界。

y
Int32

控件的新右边界。

width
Int32

控件的新宽度。

height
Int32

控件的新高度。

specified
BoundsSpecified

指定了哪些值。 此参数反映用户意图,而不是反映哪些值已更改。

注解

继承类可以重写此函数以添加大小限制。 继承类必须调用 base.setBoundsCore 以实际导致控件边界发生更改。

适用于