言語

NotifyIcon.BalloonTipClosed イベント

定義

バルーン ヒントがユーザーによって閉じられたときに発生します。

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

イベントの種類

次のコード例は、 BalloonTipClosed イベントを処理する方法を示しています。

void notifyIcon1_BalloonTipClosed(object sender, EventArgs e)
{
    MessageBox.Show("The balloon tip is now closed.");
}
Sub notifyIcon1_BalloonTipClosed(ByVal sender As Object, _
    ByVal e As EventArgs) Handles notifyIcon1.BalloonTipClosed

    MessageBox.Show("The balloon tip is now closed.")

End Sub

注釈

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

適用対象