ToolStripDropDownItem.DropDownClosed イベント

定義

ToolStripDropDown が閉じた場合に発生します。

public:
 event EventHandler ^ DropDownClosed;
public event EventHandler DropDownClosed;
public event EventHandler? DropDownClosed;
member this.DropDownClosed : EventHandler 
Public Custom Event DropDownClosed As EventHandler 

イベントの種類

次のコード例は、複数ToolStripDropDownItemのコントロールのイベントをDropDownClosed処理する方法を示しています。 このコード例は、ToolStripDropDownItem クラスのために提供されている大規模な例の一部です。

// This method handles the DropDownClosed event from a 
// ToolStripDropDownItem. It displays the value of the 
// item's Text property in the form's StatusStrip control.
void toolStripDropDownItem_DropDownClosed(object sender, EventArgs e)
{
    ToolStripDropDownItem item = sender as ToolStripDropDownItem;

    string msg = String.Format("Item closed: {0}", item.Text);
    this.toolStripStatusLabel1.Text = msg;
}
' This method handles the DropDownClosed event from a 
' ToolStripDropDownItem. It displays the value of the 
' item's Text property in the form's StatusStrip control.
 Private Sub toolStripDropDownItem_DropDownClosed(ByVal sender As Object, ByVal e As EventArgs)

     Dim item As ToolStripDropDownItem = CType(sender, ToolStripDropDownItem)

     Dim msg As String = String.Format("Item closed: {0}", item.Text)
     Me.toolStripStatusLabel1.Text = msg

 End Sub

注釈

イベントの処理の詳細については、「処理とイベントの発生」を参照してください。

適用対象