ShapeContainer.GetNextShape 方法

检索下一个或上一形状按 ShapeCollection的序列。

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

语法

声明
Public Function GetNextShape ( _
    shape As Shape, _
    forward As Boolean _
) As Shape
public Shape GetNextShape(
    Shape shape,
    bool forward
)
public:
Shape^ GetNextShape(
    Shape^ shape, 
    bool forward
)
member GetNextShape : 
        shape:Shape * 
        forward:bool -> Shape 
public function GetNextShape(
    shape : Shape, 
    forward : boolean
) : Shape

参数

  • forward
    类型:System.Boolean
    向前搜索的true ;向后搜索的 false 。

返回值

类型:Microsoft.VisualBasic.PowerPacks.Shape
ShapeShapeCollection的序列。

备注

形状添加到 ShapeCollection的顺序由最初的顺序;通过调用 SetChildIndex 方法更改排序。

示例

下面的示例演示如何使用 GetNextShape 和 SelectNextShape 方法使用 tab 键可在窗体的形状移动。 此示例要求窗体中至少有三个 RectangleShape 控件。

Private Sub Shapes_PreviewKeyDown(
    ByVal sender As Object, 
    ByVal e As System.Windows.Forms.PreviewKeyDownEventArgs
  ) Handles RectangleShape1.PreviewKeyDown, 
            RectangleShape2.PreviewKeyDown, 
            RectangleShape3.PreviewKeyDown

    Dim sh As Shape
    ' Check for the TAB key.
    If e.KeyCode = Keys.Tab Then
        ' Find the next shape in the order.
        sh = ShapeContainer1.GetNextShape(sender, True)
        ' Select the next shape.
        ShapeContainer1.SelectNextShape(sender, True, True)
    End If
End Sub
private void Shapes_PreviewKeyDown(object sender, 
    System.Windows.Forms.PreviewKeyDownEventArgs e)
{
    Shape sh;
    // Check for the TAB key.
    if (e.KeyCode==Keys.Tab)
        // Find the next shape in the order.
    {
        sh = shapeContainer1.GetNextShape((Shape) sender, true);
        // Select the next shape.
        shapeContainer1.SelectNextShape((Shape) sender, true, true);
    }
}

.NET Framework 安全性

请参见

参考

ShapeContainer 类

Microsoft.VisualBasic.PowerPacks 命名空间

其他资源

Line 和 Shape 控件简介 (Visual Studio)

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

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