NotifyIcon.BalloonTipIcon Eigenschaft

Definition

Dient zum Abrufen oder Festlegen des Symbols, das auf der Sprechblasenspitze angezeigt werden soll, die der Sprechblase NotifyIconzugeordnet ist.

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, set
Public Property BalloonTipIcon As ToolTipIcon

Eigenschaftswert

Die ToolTipIcon Anzeige auf der Sprechblasespitze, die der Sprechblase NotifyIconzugeordnet ist.

Ausnahmen

Der angegebene Wert ist kein ToolTipIcon.

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie die BalloonTipTitleEigenschaften und BalloonTipText Die Eigenschaften BalloonTipIconverwendet werden. Zum Ausführen dieses Beispiels fügen Sie den Beispielcode in ein Windows Formular ein, das einen NotifyIcon mit dem Namen notifyIcon1 enthält. Aufrufen SetBalloonTip aus dem Konstruktor oder Load der Ereignisbehandlungsmethode des Formulars.

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

Gilt für: