VisualStyleElement.Window.MaxCaption Class (System.Windows.Forms.VisualStyles)

Switch View :
ScriptFree
.NET Framework Class Library
VisualStyleElement.Window.MaxCaption Class

Provides VisualStyleElement objects for each state of the title bar of a maximized window. This class cannot be inherited.

Inheritance Hierarchy

System.Object
  System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption

Namespace:  System.Windows.Forms.VisualStyles
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
Syntax

Visual Basic
Public NotInheritable Class MaxCaption
C#
public static class MaxCaption
Visual C++
public ref class MaxCaption abstract sealed
F#
[<AbstractClass>]
[<Sealed>]
type MaxCaption =  class end

The VisualStyleElement.Window.MaxCaption type exposes the following members.

Properties

  Name Description
Public property Static member Active Gets a visual style element that represents the title bar of a maximized active window.
Public property Static member Disabled Gets a visual style element that represents the title bar of a maximized disabled window.
Public property Static member Inactive Gets a visual style element that represents the title bar of a maximized inactive window.
Top
Remarks

Each property of the VisualStyleElement.Window.MaxCaption class returns a VisualStyleElement for a different state of the title bar of a maximized window.

Windows XP Home Edition, Windows XP Professional x64 Edition, Windows Server 2003 Platform Note: Visual styles are supported only on these platforms.

Examples

The following code example demonstrates how to create a VisualStyleRenderer with the VisualStyleElement returned by the Active property. To run this example, paste it into a Windows Form. Handle the form’s Paint event and call the DrawVisualStyleElementWindowMaxCaption1 method from the Paint event-handling method, passing e as PaintEventArgs.

Visual Basic

Public Sub DrawVisualStyleElementWindowMaxCaption1(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.Window.MaxCaption.Active)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.Window.MaxCaption.Active)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.Window.MaxCaption.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


C#

public void DrawVisualStyleElementWindowMaxCaption1(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.Window.MaxCaption.Active))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.Window.MaxCaption.Active);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.Window.MaxCaption.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));
}


Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also

Reference