VisualStyleElement.Window.Caption 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 objetos VisualStyleElement para cada estado da barra de título de uma janela. Essa classe não pode ser herdada.
public: ref class VisualStyleElement::Window::Caption abstract sealed
public static class VisualStyleElement.Window.Caption
type VisualStyleElement.Window.Caption = class
Public Class VisualStyleElement.Window.Caption
- Herança
-
VisualStyleElement.Window.Caption
Exemplos
O exemplo de código a seguir demonstra como criar um VisualStyleRenderer com o VisualStyleElement retornado pela Active propriedade . Para executar este exemplo, cole-o em um Formulário do Windows. Manipule o evento do Paint formulário e chame o DrawVisualStyleElementWindowCaption1
método do Paint método de tratamento de eventos, passando e
como PaintEventArgs.
public void DrawVisualStyleElementWindowCaption1(PaintEventArgs e)
{
if (VisualStyleRenderer.IsElementDefined(
VisualStyleElement.Window.Caption.Active))
{
VisualStyleRenderer renderer =
new VisualStyleRenderer(VisualStyleElement.Window.Caption.Active);
Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
renderer.DrawBackground(e.Graphics, rectangle1);
e.Graphics.DrawString("VisualStyleElement.Window.Caption.Active",
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 DrawVisualStyleElementWindowCaption1(ByVal e As PaintEventArgs)
If (VisualStyleRenderer.IsElementDefined( _
VisualStyleElement.Window.Caption.Active)) Then
Dim renderer As New VisualStyleRenderer _
(VisualStyleElement.Window.Caption.Active)
Dim rectangle1 As New Rectangle(10, 50, 50, 50)
renderer.DrawBackground(e.Graphics, rectangle1)
e.Graphics.DrawString("VisualStyleElement.Window.Caption.Active", _
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
Cada propriedade da VisualStyleElement.Window.Caption classe retorna um para um VisualStyleElement estado diferente da barra de título de uma janela.
Propriedades
Active |
Obtém um elemento de estilo visual que representa a barra de título de uma janela ativa. |
Disabled |
Obtém um elemento de estilo visual que representa a barra de título de uma janela desabilitada. |
Inactive |
Obtém um elemento de estilo visual que representa a barra de título de uma janela inativa. |