VisualStyleElement.Window.SmallMinCaption Klasse

Definition

Stellt VisualStyleElement-Objekte für die einzelnen Zustände der Titelleiste eines minimierten kleinen Fensters bereit. Diese Klasse kann nicht vererbt werden.

public: ref class VisualStyleElement::Window::SmallMinCaption abstract sealed
public static class VisualStyleElement.Window.SmallMinCaption
type VisualStyleElement.Window.SmallMinCaption = class
Public Class VisualStyleElement.Window.SmallMinCaption
Vererbung
VisualStyleElement.Window.SmallMinCaption

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie sie mit dem VisualStyleElement von der Active -Eigenschaft zurückgegebenen erstellenVisualStyleRenderer. Um dieses Beispiel auszuführen, fügen Sie es in ein Windows Form-Formular ein. Behandeln Sie das Ereignis des Formulars Paint , und rufen Sie die DrawVisualStyleElementWindowSmallMinCaption1 -Methode aus der Paint Ereignisbehandlungsmethode auf, und übergeben Sie e als PaintEventArgs.

public void DrawVisualStyleElementWindowSmallMinCaption1(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.Window.SmallMinCaption.Active))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.Window.SmallMinCaption.Active);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.Window.SmallMinCaption.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 DrawVisualStyleElementWindowSmallMinCaption1(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.Window.SmallMinCaption.Active)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.Window.SmallMinCaption.Active)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.Window.SmallMinCaption.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

Hinweise

Jede Eigenschaft der VisualStyleElement.Window.SmallMinCaption -Klasse gibt einen VisualStyleElement für einen anderen Status der Titelleiste eines minimierten kleinen Fensters zurück, z. B. ein Toolfenster.

Eigenschaften

Active

Ruft ein visuelles Stilelement ab, das die Titelleiste eines aktiven kleinen Fensters darstellt, das minimiert ist.

Disabled

Ruft ein visuelles Stilelement ab, das die Titelleiste eines deaktivierten kleinen Fensters darstellt, das minimiert ist.

Inactive

Ruft ein visuelles Stilelement ab, das die Titelleiste eines inaktiven kleinen Fensters darstellt, das minimiert ist.

Gilt für:

Weitere Informationen