ToolStripItem.Select 方法

定义

选择项。

public:
 void Select();
public void Select ();
member this.Select : unit -> unit
Public Sub Select ()

示例

下面的代码示例演示如何调用 Select 该方法。 此代码示例是为类提供的大型示例的 ToolStripItem 一部分。

// This method handles the Click event for the button.
// it selects the first item in the ToolStrip control
// by using the ToolStripITem.Select method.
private void button1_Click(object sender, EventArgs e)
{
    RolloverItem item = this.toolStrip1.Items[0] as RolloverItem;

    if (item != null)
    {
        item.Select();

        this.Invalidate();
    }
}
' This method handles the Click event for the button.
' it selects the first item in the ToolStrip control
' by using the ToolStripITem.Select method.
Private Sub button1_Click(sender As Object, e As EventArgs) Handles button1.Click
     Dim item As RolloverItem = CType(Me.toolStrip1.Items(0), RolloverItem)
   
   If (item IsNot Nothing) Then
      item.Select()
      
      Me.Invalidate()
   End If
 End Sub

适用于