ToolStripItem.OwnerChanged 事件
定義
public:
event EventHandler ^ OwnerChanged;
public event EventHandler OwnerChanged;
member this.OwnerChanged : EventHandler
Public Custom Event OwnerChanged As EventHandler
事件類型
範例
下列程式碼範例將示範如何使用這個成員。The following code example demonstrates the use of this member. 在此範例中,事件處理常式會報告事件的發生情況 OwnerChanged 。In the example, an event handler reports on the occurrence of the OwnerChanged event. 這份報告可協助您瞭解發生事件的時間,並協助您進行調試。This report helps you to learn when the event occurs and can assist you in debugging. 若要報告多個事件或經常發生的事件,請考慮將取代為 MessageBox.Show Console.WriteLine 或將訊息附加至多行 TextBox 。To report on multiple events or on events that occur frequently, consider replacing MessageBox.Show with Console.WriteLine or appending the message to a multiline TextBox.
若要執行範例程式碼,請將它貼到專案中,其中包含繼承自之類型的實例 ToolStripItem ,例如 ToolStripButton 或 ToolStripMenuItem 。To run the example code, paste it into a project that contains an instance of a type that inherits from ToolStripItem, such as a ToolStripButton or ToolStripMenuItem. 然後命名實例 ToolStripItem1
,並確定事件處理常式與事件相關聯 OwnerChanged 。Then name the instance ToolStripItem1
and ensure that the event handler is associated with the OwnerChanged event.
private void ToolStripItem1_OwnerChanged(Object sender, EventArgs e) {
MessageBox.Show("You are in the ToolStripItem.OwnerChanged event.");
}
Private Sub ToolStripItem1_OwnerChanged(sender as Object, e as EventArgs) _
Handles ToolStripItem1.OwnerChanged
MessageBox.Show("You are in the ToolStripItem.OwnerChanged event.")
End Sub
備註
如需處理事件的詳細資訊,請參閱 處理和引發事件。For more information about handling events, see Handling and Raising Events.
注意
變更的 Enabled 屬性不 ToolStrip 會引發 OwnerChanged 事件。Changing the Enabled property of a ToolStrip does not raise the OwnerChanged event. 使用特定的屬性設定來引發此事件。Raise this event with specific property settings.