VisualStyleElement.ExplorerBar.IEBarMenu Sınıf

Tanım

VisualStyleElement Gezgin Çubuğu'nun genişletilmiş menü okunun her durumu için nesneler sağlar. Bu sınıf devralınamaz.

public: ref class VisualStyleElement::ExplorerBar::IEBarMenu abstract sealed
public static class VisualStyleElement.ExplorerBar.IEBarMenu
type VisualStyleElement.ExplorerBar.IEBarMenu = class
Public Class VisualStyleElement.ExplorerBar.IEBarMenu
Devralma
VisualStyleElement.ExplorerBar.IEBarMenu

Örnekler

Aşağıdaki kod örneği, özelliği tarafından Normal döndürülen ile VisualStyleElement nasıl oluşturulacağını VisualStyleRenderer gösterir. Bu örneği çalıştırmak için windows formuna yapıştırın. Formun Paint olayını işleyip yöntemini olay işleme yönteminden Paint olarak geçirerek çağırın eDrawVisualStyleElementExplorerBarIEBarMenu1PaintEventArgs.

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

Açıklamalar

Sınıfın VisualStyleElement.ExplorerBar.IEBarMenu her özelliği, Gezgin Çubuğu'nun menü düğmesinin farklı bir durumu için bir VisualStyleElement alır.

Özellikler

Hot

Etkin menü düğmesini temsil eden görsel stil öğesini alır.

Normal

Normal bir menü düğmesini temsil eden görsel stil öğesini alır.

Pressed

Basılan menü düğmesini temsil eden görsel stil öğesini alır.

Şunlara uygulanır

Ayrıca bkz.