VisualStyleElement.TrayNotify.AnimateBackground Classe
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.
Fournit un VisualStyleElement pour un arrière-plan animé de la zone de notification. Cette classe ne peut pas être héritée.
public: ref class VisualStyleElement::TrayNotify::AnimateBackground abstract sealed
public static class VisualStyleElement.TrayNotify.AnimateBackground
type VisualStyleElement.TrayNotify.AnimateBackground = class
Public Class VisualStyleElement.TrayNotify.AnimateBackground
- Héritage
-
VisualStyleElement.TrayNotify.AnimateBackground
Exemples
L’exemple de code suivant montre comment créer un VisualStyleRenderer avec le VisualStyleElement retourné par la Normal propriété . Pour exécuter cet exemple, collez-le dans un Windows Form. Gérez l’événement du Paint formulaire et appelez la DrawVisualStyleElementTrayNotifyAnimateBackground1
méthode à partir de la Paint méthode de gestion des événements, en passant e
comme PaintEventArgs.
public void DrawVisualStyleElementTrayNotifyAnimateBackground1(PaintEventArgs e)
{
if (VisualStyleRenderer.IsElementDefined(
VisualStyleElement.TrayNotify.AnimateBackground.Normal))
{
VisualStyleRenderer renderer =
new VisualStyleRenderer(VisualStyleElement.TrayNotify.AnimateBackground.Normal);
Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
renderer.DrawBackground(e.Graphics, rectangle1);
e.Graphics.DrawString("VisualStyleElement.TrayNotify.AnimateBackground.Normal",
this.Font, Brushes.Black, new Point(10, 10));
}
else
e.Graphics.DrawString("This element is not defined in the current visual style.",
this.Font, Brushes.Black, new Point(10, 10));
}
Public Sub DrawVisualStyleElementTrayNotifyAnimateBackground1(ByVal e As PaintEventArgs)
If (VisualStyleRenderer.IsElementDefined( _
VisualStyleElement.TrayNotify.AnimateBackground.Normal)) Then
Dim renderer As New VisualStyleRenderer _
(VisualStyleElement.TrayNotify.AnimateBackground.Normal)
Dim rectangle1 As New Rectangle(10, 50, 50, 50)
renderer.DrawBackground(e.Graphics, rectangle1)
e.Graphics.DrawString("VisualStyleElement.TrayNotify.AnimateBackground.Normal", _
Me.Font, Brushes.Black, New Point(10, 10))
Else
e.Graphics.DrawString("This element is not defined in the current visual style.", _
Me.Font, Brushes.Black, New Point(10, 10))
End If
End Sub
Remarques
La Normal propriété de la VisualStyleElement.TrayNotify.AnimateBackground classe retourne un VisualStyleElement qui représente un arrière-plan animé de la zone de notification, qui se trouve à l’extrême droite de la barre des tâches.
Propriétés
Normal |
Obtient un élément de style visuel qui représente un arrière-plan animé de la zone de notification. |