VisualStyleElement.Tab.TopTabItemLeftEdge 类

定义

为选项卡控件的每种状态提供 VisualStyleElement 对象,该选项卡控件与其他选项卡控件共享其下边框和右边框。 此类不能被继承。

public: ref class VisualStyleElement::Tab::TopTabItemLeftEdge abstract sealed
public static class VisualStyleElement.Tab.TopTabItemLeftEdge
type VisualStyleElement.Tab.TopTabItemLeftEdge = class
Public Class VisualStyleElement.Tab.TopTabItemLeftEdge
继承
VisualStyleElement.Tab.TopTabItemLeftEdge

示例

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

public void DrawVisualStyleElementTabTopTabItemLeftEdge1(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.Tab.TopTabItemLeftEdge.Normal))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.Tab.TopTabItemLeftEdge.Normal);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.Tab.TopTabItemLeftEdge.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 DrawVisualStyleElementTabTopTabItemLeftEdge1(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.Tab.TopTabItemLeftEdge.Normal)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.Tab.TopTabItemLeftEdge.Normal)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.Tab.TopTabItemLeftEdge.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.Tab.TopTabItemLeftEdge 返回选项卡控件的不同状态的 , VisualStyleElement 该选项卡控件与其他选项卡控件共享其下边框和右边框。

属性

Disabled

获取表示被禁用的选项卡控件的视觉样式元素,该选项卡控件与其他选项卡控件共享其下边框和右边框。

Hot

获取表示热选项卡控件的视觉样式元素,该选项卡控件与其他选项卡控件共享其下边框和右边框。

Normal

获取表示正常选项卡控件的视觉样式元素,该选项卡控件与其他选项卡控件共享其下边框和右边框。

Pressed

获取表示按下的选项卡控件的视觉样式元素,该选项卡控件与其他选项卡控件共享其下边框和右边框。

适用于

另请参阅