VisualStyleElement.Menu.BarDropDown 类

定义

为菜单栏的下拉箭头提供 VisualStyleElement。 此类不能被继承。

public: ref class VisualStyleElement::Menu::BarDropDown abstract sealed
public static class VisualStyleElement.Menu.BarDropDown
type VisualStyleElement.Menu.BarDropDown = class
Public Class VisualStyleElement.Menu.BarDropDown
继承
VisualStyleElement.Menu.BarDropDown

示例

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

public void DrawVisualStyleElementMenuBarDropDown1(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.Menu.BarDropDown.Normal))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.Menu.BarDropDown.Normal);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.Menu.BarDropDown.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 DrawVisualStyleElementMenuBarDropDown1(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.Menu.BarDropDown.Normal)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.Menu.BarDropDown.Normal)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.Menu.BarDropDown.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.Menu.BarDropDown 属性返回表示VisualStyleElement菜单栏的下拉箭头的 。

属性

Normal

获取表示菜单栏的下拉箭头的视觉样式元素。

适用于

另请参阅