VisualStyleElement.ExplorerBar.HeaderClose Класс
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Предоставляет объекты VisualStyleElement для каждого состояния кнопки Закрыть панели обозревателя. Этот класс не наследуется.
public: ref class VisualStyleElement::ExplorerBar::HeaderClose abstract sealed
public static class VisualStyleElement.ExplorerBar.HeaderClose
type VisualStyleElement.ExplorerBar.HeaderClose = class
Public Class VisualStyleElement.ExplorerBar.HeaderClose
- Наследование
-
VisualStyleElement.ExplorerBar.HeaderClose
Примеры
В следующем примере кода показано, как создать VisualStyleRenderer объект с VisualStyleElement возвращаемым свойством Normal . Чтобы запустить этот пример, вставьте его в Форму Windows Forms. Обработайте событие формы Paint и вызовите DrawVisualStyleElementExplorerBarHeaderClose1
метод из Paint метода обработки событий, передавая e
как PaintEventArgs.
public void DrawVisualStyleElementExplorerBarHeaderClose1(PaintEventArgs e)
{
if (VisualStyleRenderer.IsElementDefined(
VisualStyleElement.ExplorerBar.HeaderClose.Normal))
{
VisualStyleRenderer renderer =
new VisualStyleRenderer(VisualStyleElement.ExplorerBar.HeaderClose.Normal);
Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
renderer.DrawBackground(e.Graphics, rectangle1);
e.Graphics.DrawString("VisualStyleElement.ExplorerBar.HeaderClose.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 DrawVisualStyleElementExplorerBarHeaderClose1(ByVal e As PaintEventArgs)
If (VisualStyleRenderer.IsElementDefined( _
VisualStyleElement.ExplorerBar.HeaderClose.Normal)) Then
Dim renderer As New VisualStyleRenderer _
(VisualStyleElement.ExplorerBar.HeaderClose.Normal)
Dim rectangle1 As New Rectangle(10, 50, 50, 50)
renderer.DrawBackground(e.Graphics, rectangle1)
e.Graphics.DrawString("VisualStyleElement.ExplorerBar.HeaderClose.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.HeaderClose свойство класса возвращает VisualStyleElement для другого состояния кнопки Закрыть Обозреватель Bar.
Свойства
Hot |
Возвращает элемент визуального стиля, представляющего кнопку Закрыть в активном состоянии. |
Normal |
Возвращает элемент визуального стиля, представляющий кнопку Закрыть в обычном состоянии. |
Pressed |
Возвращает элемент визуального стиля, представляющий кнопку Закрыть в нажатом состоянии. |