NotifyIcon.BalloonTipTitle Eigenschaft
Definition
Ruft den Titel der SprechblasenInfo ab, die auf dem NotifyIcon angezeigt wird, oder legt diesen fest.Gets or sets the title of the balloon tip displayed on the 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
Eigenschaftswert
Der Text, der als Titel der SprechblasenInfo angezeigt werden soll.The text to display as the title of the balloon tip.
Beispiele
Im folgenden Codebeispiel wird die Verwendung der BalloonTipTitle Eigenschaften, BalloonTipText und veranschaulicht BalloonTipIcon .The following code example demonstrates how to use the BalloonTipTitle, BalloonTipText, and BalloonTipIcon properties. Fügen Sie zum Ausführen dieses Beispiels den Beispielcode in ein Windows Form ein, das einen mit dem NotifyIcon Namen enthält notifyIcon1
.To run this example, paste the example code into a Windows Form that contains a NotifyIcon named notifyIcon1
. Ruft SetBalloonTip
aus dem Konstruktor des Formulars oder der Load Ereignis Behandlungsmethode auf.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
Hinweise
Der Titeltext wird im oberen Bereich der Sprechblase in Fett Schrift angezeigt.The title text will display in a bold font near the top of the balloon.