Share via


NotifyIcon.BalloonTipIcon Özellik

Tanım

simgesiyle ilişkilendirilmiş balon ipucunda görüntülenecek simgeyi NotifyIconalır veya ayarlar.

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

Özellik Değeri

ile ToolTipIcon ilişkilendirilmiş balon ucunda görüntülenecek.NotifyIcon

Özel durumlar

Belirtilen değer bir ToolTipIcondeğil.

Örnekler

Aşağıdaki kod örneği , BalloonTipTextve BalloonTipIcon özelliklerinin nasıl kullanılacağını BalloonTipTitlegösterir. Bu örneği çalıştırmak için, örnek kodu adlı notifyIcon1bir windows formuna NotifyIcon yapıştırın. Formun oluşturucusundan veya Load olay işleme yönteminden çağrısıSetBalloonTip.

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

Şunlara uygulanır