Shape.BringToFront 方法

对 z- 顺序的前面将 line 或 shape 控件。

命名空间:  Microsoft.VisualBasic.PowerPacks
程序集:  Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)

语法

声明
Public Sub BringToFront
public void BringToFront()
public:
void BringToFront()
member BringToFront : unit -> unit 
public function BringToFront()

备注

BringToFront 方法可用来确定 LineShapeOvalShapeRectangleShape 控件在其他 line 和 shape 控件的前面在特定容器。 它不确定在控件的前面其他类型的控件在容器中;图像绘制通过使用 line 和 shape 控件在其他控件后始终显示。

示例

下面的示例演示如何使用 BringToFront 方法更改形状 z 顺序在运行时。 此示例要求您具有一个 RectangleShape 控件 RectangleShape1 的、名为在窗体的 OvalShape1 的一个 OvalShape 控件。 为了获得最佳结果,请使控件不同的颜色并确保它们相互重叠。

Private Sub Shapes_Click(
    ByVal sender As System.Object, 
    ByVal e As System.EventArgs
  ) Handles RectangleShape1.Click, OvalShape1.Click

    ' Bring the control that was clicked to the top of the z-order.
    sender.BringToFront()
End Sub
private void Shapes_Click(System.Object sender, System.EventArgs e)
{
    // Bring the control that was clicked to the top of the z-order.
    ((Shape)sender).BringToFront();
}

.NET Framework 安全性

请参见

参考

Shape 类

Microsoft.VisualBasic.PowerPacks 命名空间

其他资源

如何:使用 LineShape 控件绘制直线 (Visual Studio)

如何:使用 OvalShape 和 RectangleShape 控件绘制形状 (Visual Studio)

Line 和 Shape 控件简介 (Visual Studio)