ToolStripDropDownItem.DropDownOpened イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ToolStripDropDown が開いた場合に発生します。
public:
event EventHandler ^ DropDownOpened;
public event EventHandler DropDownOpened;
public event EventHandler? DropDownOpened;
member this.DropDownOpened : EventHandler
Public Custom Event DropDownOpened As EventHandler
イベントの種類
例
次のコード例では、複数ToolStripDropDownItemのコントロールの イベントをDropDownOpened処理する方法を示します。 このコード例は、ToolStripDropDownItem クラスのために提供されている大規模な例の一部です。
// This method handles the DropDownOpened event from a
// ToolStripDropDownItem. It displays the value of the
// item's Text property in the form's StatusStrip control.
void toolStripDropDownItem_DropDownOpened(object sender, EventArgs e)
{
ToolStripDropDownItem item = sender as ToolStripDropDownItem;
string msg = String.Format("Item opened: {0}", item.Text);
this.toolStripStatusLabel1.Text = msg;
}
' This method handles the DropDownOpened event from a
' ToolStripDropDownItem. It displays the value of the
' item's Text property in the form's StatusStrip control.
Private Sub toolStripDropDownItem_DropDownOpened(ByVal sender As Object, ByVal e As EventArgs)
Dim item As ToolStripDropDownItem = CType(sender, ToolStripDropDownItem)
Dim msg As String = String.Format("Item opened: {0}", item.Text)
Me.toolStripStatusLabel1.Text = msg
End Sub
注釈
このイベントは、ユーザーがドロップダウン 項目をクリックしたとき、または メソッドを呼び出すときに発生します ShowDropDown 。 このイベントを使用して、 を動的に設定 ToolStripDropDownできます。
イベントの処理の詳細については、「処理とイベントの発生」を参照してください。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET