NotifyIcon.BalloonTipClosed Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the balloon tip is closed by the user.
public:
event EventHandler ^ BalloonTipClosed;
public event EventHandler BalloonTipClosed;
public event EventHandler? BalloonTipClosed;
member this.BalloonTipClosed : EventHandler
Public Custom Event BalloonTipClosed As EventHandler
Event Type
Examples
The following code example demonstrates how to handle the BalloonTipClosed event.
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
Remarks
For more information about how to handle events, see Handling and Raising Events.
Applies to
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.