VisualStyleElement.ExplorerBar.NormalGroupCollapse 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
为浏览器栏中一组常见项的折叠按钮的每种状态提供 VisualStyleElement 对象。 此类不能被继承。
public: ref class VisualStyleElement::ExplorerBar::NormalGroupCollapse abstract sealed
public static class VisualStyleElement.ExplorerBar.NormalGroupCollapse
type VisualStyleElement.ExplorerBar.NormalGroupCollapse = class
Public Class VisualStyleElement.ExplorerBar.NormalGroupCollapse
- 继承
-
VisualStyleElement.ExplorerBar.NormalGroupCollapse
示例
下面的代码示例演示如何使用 VisualStyleElement 属性返回的 Normal 创建 VisualStyleRenderer 。 若要运行此示例,请将其粘贴到 Windows 窗体中。 处理窗体的 Paint 事件并调用处理窗体的 Paint 事件,并从Paint事件处理方法调用 DrawVisualStyleElementExplorerBarNormalGroupCollapse1
方法,并e
作为 PaintEventArgs传递。
public void DrawVisualStyleElementExplorerBarNormalGroupCollapse1(PaintEventArgs e)
{
if (VisualStyleRenderer.IsElementDefined(
VisualStyleElement.ExplorerBar.NormalGroupCollapse.Normal))
{
VisualStyleRenderer renderer =
new VisualStyleRenderer(VisualStyleElement.ExplorerBar.NormalGroupCollapse.Normal);
Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
renderer.DrawBackground(e.Graphics, rectangle1);
e.Graphics.DrawString("VisualStyleElement.ExplorerBar.NormalGroupCollapse.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 DrawVisualStyleElementExplorerBarNormalGroupCollapse1(ByVal e As PaintEventArgs)
If (VisualStyleRenderer.IsElementDefined( _
VisualStyleElement.ExplorerBar.NormalGroupCollapse.Normal)) Then
Dim renderer As New VisualStyleRenderer _
(VisualStyleElement.ExplorerBar.NormalGroupCollapse.Normal)
Dim rectangle1 As New Rectangle(10, 50, 50, 50)
renderer.DrawBackground(e.Graphics, rectangle1)
e.Graphics.DrawString("VisualStyleElement.ExplorerBar.NormalGroupCollapse.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
注解
对于资源管理器栏中一组常见项目(如 Windows 资源管理器中的“文件和文件夹任务”组)的不同状态,类的每个属性VisualStyleElement.ExplorerBar.NormalGroupCollapse都会获取VisualStyleElement一个 。
属性
Hot |
获取表示浏览器栏中一组常见项的热折叠按钮的视觉样式元素。 |
Normal |
获取表示浏览器栏中一组常见项的正常折叠按钮的视觉样式元素。 |
Pressed |
获取表示浏览器栏中一组常见项的按下的折叠按钮的视觉样式元素。 |