NotifyIcon.BalloonTipIcon Property    
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.
Gets or sets the icon to display on the balloon tip associated with the NotifyIcon.
public:
 property System::Windows::Forms::ToolTipIcon BalloonTipIcon { System::Windows::Forms::ToolTipIcon get(); void set(System::Windows::Forms::ToolTipIcon value); };public System.Windows.Forms.ToolTipIcon BalloonTipIcon { get; set; }member this.BalloonTipIcon : System.Windows.Forms.ToolTipIcon with get, setPublic Property BalloonTipIcon As ToolTipIconProperty Value
The ToolTipIcon to display on the balloon tip associated with the NotifyIcon.
Exceptions
The specified value is not a ToolTipIcon.
Examples
The following code example demonstrates how to use the BalloonTipTitle, BalloonTipText, and BalloonTipIcon properties. To run this example, paste the example code into a Windows Form that contains a NotifyIcon named notifyIcon1. Call SetBalloonTip from the form's constructor or Load event-handling method.
private void SetBalloonTip()
{
    notifyIcon1.Icon = SystemIcons.Exclamation;
    notifyIcon1.BalloonTipTitle = "Balloon Tip Title";
    notifyIcon1.BalloonTipText = "Balloon Tip Text.";
    notifyIcon1.BalloonTipIcon = ToolTipIcon.Error;
    this.Click += new EventHandler(Form1_Click);
}
void Form1_Click(object sender, EventArgs e) 
{
    notifyIcon1.Visible = true;
    notifyIcon1.ShowBalloonTip(30000);
}
Private Sub SetBalloonTip()
    notifyIcon1.Icon = SystemIcons.Exclamation
    notifyIcon1.BalloonTipTitle = "Balloon Tip Title"
    notifyIcon1.BalloonTipText = "Balloon Tip Text."
    notifyIcon1.BalloonTipIcon = ToolTipIcon.Error
End Sub
Sub Form1_Click(ByVal sender As Object, ByVal e As EventArgs) _
    Handles Me.Click
    notifyIcon1.Visible = True
    notifyIcon1.ShowBalloonTip(30000)
End Sub