共用方式為


Shape.BringToFront 方法

更新:2007 年 11 月

將 Line 或 Shape 控制項帶到疊置順序的最上層。

命名空間:  Microsoft.VisualBasic.PowerPacks
組件:  Microsoft.VisualBasic.PowerPacks.Vs (在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)

語法

Public Sub BringToFront

Dim instance As Shape

instance.BringToFront()
public void BringToFront()
public:
void BringToFront()
public function BringToFront()

備註

BringToFront 方法可以用來將 LineShapeOvalShapeRectangleShape 控制項放置在指定容器中的所有其他 Line 或 Shape 控制項前面。它不會將控制項放置在容器中其他類型的控制項前面,而使用 Line 或 Shape 控制項繪製的圖形一律出現在其他控制項後面。

範例

下列範例示範如何使用 BringToFront 方法,在執行階段變更形狀的疊置順序。這個範例要求您的表單必須有一個名為 RectangleShape1 的 RectangleShape 控制項和一個名為 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();
}

使用權限

請參閱

參考

Shape 類別

Shape 成員

Microsoft.VisualBasic.PowerPacks 命名空間

其他資源

HOW TO:使用 LineShape 控制項繪製線條 (Visual Studio)

HOW TO:使用 OvalShape 和 RectangleShape 控制項繪製圖案 (Visual Studio)

Line 和 Shape 控制項簡介 (Visual Studio)