VisualStyleElement.TrayNotify.AnimateBackground Classe
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Fornece um VisualStyleElement para uma tela de fundo animada da área de notificação. Essa classe não pode ser herdada.
public: ref class VisualStyleElement::TrayNotify::AnimateBackground abstract sealed
public static class VisualStyleElement.TrayNotify.AnimateBackground
type VisualStyleElement.TrayNotify.AnimateBackground = class
Public Class VisualStyleElement.TrayNotify.AnimateBackground
- Herança
-
VisualStyleElement.TrayNotify.AnimateBackground
Exemplos
O exemplo de código a Normal seguir demonstra como criar um VisualStyleRenderer com o VisualStyleElement retornado pela propriedade . Para executar este exemplo, cole-o em um Windows Form. Manipule o evento do Paint formulário e chame o DrawVisualStyleElementTrayNotifyAnimateBackground1
método do Paint método de manipulação de eventos, passando e
como 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
Comentários
A Normal propriedade da VisualStyleElement.TrayNotify.AnimateBackground classe retorna um VisualStyleElement que representa uma tela de fundo animada da área de notificação, que está localizada na extrema direita da barra de tarefas.
Propriedades
Normal |
Obtém um elemento de estilo visual que representa uma tela de fundo animada da área de notificação. |