NotifyIcon.BalloonTipIcon Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit l’icône à afficher dans l’info-bulle associée au NotifyIcon.
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
Valeur de propriété
ToolTipIcon à afficher dans l’info-bulle associée au NotifyIcon.
Exceptions
La valeur spécifiée n’est pas un ToolTipIcon.
Exemples
L’exemple de code suivant montre comment utiliser les BalloonTipTitlepropriétés , BalloonTipTextet BalloonTipIcon . Pour exécuter cet exemple, collez l’exemple de code dans un Windows Form qui contient un NotifyIcon nommé notifyIcon1
. Appel SetBalloonTip
à partir du constructeur du formulaire ou Load de la méthode de gestion des événements.
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