VisualStyleElement.Window.CaptionSizingTemplate 类      
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
提供表示窗口标题栏的大小调整模板的 VisualStyleElement。 此类不能被继承。
public: ref class VisualStyleElement::Window::CaptionSizingTemplate abstract sealedpublic static class VisualStyleElement.Window.CaptionSizingTemplatetype VisualStyleElement.Window.CaptionSizingTemplate = classPublic Class VisualStyleElement.Window.CaptionSizingTemplate- 继承
- 
				VisualStyleElement.Window.CaptionSizingTemplate
示例
下面的代码示例演示如何使用 VisualStyleElement 属性返回的 Normal 创建 VisualStyleRenderer 。 若要运行此示例,请将其粘贴到 Windows 窗体中。 处理窗体的事件Paint,并从Paint事件处理方法调用 DrawVisualStyleElementWindowCaptionSizingTemplate1 方法,作为 ePaintEventArgs传递。
public void DrawVisualStyleElementWindowCaptionSizingTemplate1(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.Window.CaptionSizingTemplate.Normal))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.Window.CaptionSizingTemplate.Normal);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.Window.CaptionSizingTemplate.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 DrawVisualStyleElementWindowCaptionSizingTemplate1(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.Window.CaptionSizingTemplate.Normal)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.Window.CaptionSizingTemplate.Normal)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.Window.CaptionSizingTemplate.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
注解
Normal类的 VisualStyleElement.Window.CaptionSizingTemplate 属性返回一个 VisualStyleElement ,它表示窗口标题栏的大小调整模板。
属性
| Normal | 获取表示窗口标题栏的大小调整模板的视觉样式元素。 |