ToolStripDropDown.Closed 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生於關閉 ToolStripDropDown 時。
public:
event System::Windows::Forms::ToolStripDropDownClosedEventHandler ^ Closed;
public event System.Windows.Forms.ToolStripDropDownClosedEventHandler Closed;
public event System.Windows.Forms.ToolStripDropDownClosedEventHandler? Closed;
member this.Closed : System.Windows.Forms.ToolStripDropDownClosedEventHandler
Public Custom Event Closed As ToolStripDropDownClosedEventHandler
事件類型
範例
下列程式碼範例示範此成員的使用。 在此範例中,事件處理常式會報告事件發生次數 Closed 。 此報告可協助您瞭解事件發生的時間,並可協助您進行偵錯。 若要報告多個事件或經常發生的事件,請考慮將 取代 MessageBox.ShowConsole.WriteLine 為 或將訊息附加至多行 TextBox 。
若要執行範例程式碼,請將它貼到包含名為 ToolStripDropDown1
之型 ToolStripDropDown 別實例的專案。 然後,確定事件處理常式與事件相關聯 Closed 。
private void ToolStripDropDown1_Closed(Object sender, ToolStripDropDownClosedEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "CloseReason", e.CloseReason );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "Closed Event" );
}
Private Sub ToolStripDropDown1_Closed(sender as Object, e as ToolStripDropDownClosedEventArgs) _
Handles ToolStripDropDown1.Closed
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "CloseReason", e.CloseReason)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"Closed Event")
End Sub
備註
建立 ToolStripDropDown 委派時,必須識別處理事件的方法。 若要使事件與您的事件處理常式產生關聯,請將委派的執行個體 (Instance) 加入至事件。 除非您移除委派,否則每當事件發生時就會呼叫事件處理常式。 如需事件處理常式委派的詳細資訊,請參閱 處理和引發事件。