VisualStyleElement.Window.SmallMinCaption 类

定义

为最小化小窗口的标题栏的每种状态提供 VisualStyleElement 对象。 此类不能被继承。

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

示例

下面的代码示例演示如何使用 VisualStyleElement 属性返回的 Active 创建 VisualStyleRenderer 。 若要运行此示例,请将其粘贴到 Windows 窗体中。 处理窗体的事件Paint,并从Paint事件处理方法调用 DrawVisualStyleElementWindowSmallMinCaption1 方法,作为 ePaintEventArgs传递。

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

注解

类的每个属性 VisualStyleElement.Window.SmallMinCaption 为最小化的小窗口(例如工具窗口)的标题栏的不同状态返回 VisualStyleElement

属性

Active

获取表示最小化活动小窗口的标题栏的视觉样式元素。

Disabled

获取表示最小化禁用小窗口的标题栏的视觉样式元素。

Inactive

获取表示最小化的非活动小窗口的标题栏的视觉样式元素。

适用于

另请参阅