NotifyIcon.BalloonTipText Proprietà

Definizione

Ottiene o imposta il testo da visualizzare sulla punta del fumetto associata all'oggetto NotifyIcon.

public:
 property System::String ^ BalloonTipText { System::String ^ get(); void set(System::String ^ value); };
public string BalloonTipText { get; set; }
member this.BalloonTipText : string with get, set
Public Property BalloonTipText As String

Valore della proprietà

Testo da visualizzare sulla punta del fumetto associato all'oggetto NotifyIcon.

Esempio

Nell'esempio di codice seguente viene illustrato come usare le BalloonTipTitleproprietà , BalloonTipTexte BalloonTipIcon . Per eseguire questo esempio, incollare il codice di esempio in un form Windows contenente un NotifyIcon denominato notifyIcon1. Chiamare SetBalloonTip dal costruttore Load o dal metodo di gestione degli eventi del modulo.

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

Si applica a