VisualStyleElement.ExplorerBar.NormalGroupExpand 类

定义

为浏览器栏中一组常见项的展开按钮的每种状态提供 VisualStyleElement 对象。 此类不能被继承。

public: ref class VisualStyleElement::ExplorerBar::NormalGroupExpand abstract sealed
public static class VisualStyleElement.ExplorerBar.NormalGroupExpand
type VisualStyleElement.ExplorerBar.NormalGroupExpand = class
Public Class VisualStyleElement.ExplorerBar.NormalGroupExpand
继承
VisualStyleElement.ExplorerBar.NormalGroupExpand

示例

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

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

注解

类的每个属性 VisualStyleElement.ExplorerBar.NormalGroupExpand 获取 VisualStyleElement 浏览器栏中常见项目组(例如 Windows 资源管理器中的 文件和文件夹任务 组)的展开按钮的不同状态。

属性

Hot

获取表示浏览器栏中一组常见项的热展开按钮的视觉样式元素。

Normal

获取表示浏览器栏中一组常见项的正常展开按钮的视觉样式元素。

Pressed

获取表示浏览器栏中一组常见项的已按下展开按钮的视觉样式元素。

适用于

另请参阅