NotifyIcon.BalloonTipTitle Propiedad

Definición

Obtiene o establece el título del globo de sugerencias mostrado en el 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

Valor de propiedad

El texto que aparecerá como título del globo de sugerencias.

Ejemplos

En el ejemplo de código siguiente se muestra cómo usar las BalloonTipTitlepropiedades , BalloonTipTexty BalloonTipIcon . Para ejecutar este ejemplo, pegue el código de ejemplo en un formulario Windows Form que contenga un NotifyIcon denominado notifyIcon1. Llame SetBalloonTip desde el constructor del formulario o Load desde el método de control de eventos.

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

Comentarios

El texto del título se mostrará en una fuente en negrita cerca de la parte superior del globo.

Se aplica a