ToolStripItem.Select Yöntem

Tanım

Öğeyi seçer.

C#
public void Select ();

Örnekler

Aşağıdaki kod örneği, yönteminin nasıl çağrılduğunu Select gösterir. Bu kod örneği, sınıfı için ToolStripItem sağlanan daha büyük bir örneğin parçasıdır.

C#
// 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();
    }
}

Şunlara uygulanır

Ürün Sürümler
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7