NotifyIcon.BalloonTipTitle Eigenschap

Definitie

Hiermee wordt de titel van de ballontip opgehaald of ingesteld die wordt weergegeven op de NotifyIcon.

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

Waarde van eigenschap

De tekst die moet worden weergegeven als de titel van de ballontip.

Voorbeelden

In het volgende codevoorbeeld ziet u hoe u de BalloonTipTitle, BalloonTipTexten BalloonTipIcon eigenschappen gebruikt. Als u dit voorbeeld wilt uitvoeren, plakt u de voorbeeldcode in een Windows formulier met een NotifyIcon met de naam notifyIcon1. Aanroepen SetBalloonTip vanuit de constructor- of Load gebeurtenisafhandelingsmethode van het formulier.

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

Opmerkingen

De titeltekst wordt weergegeven in een vet lettertype boven aan de ballon.

Van toepassing op