VisualStyleElement.Window.SmallFrameLeft Třída
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Poskytuje VisualStyleElement objekty pro každý stav levého okraje malého okna. Tato třída se nemůže dědit.
public: ref class VisualStyleElement::Window::SmallFrameLeft abstract sealed
public static class VisualStyleElement.Window.SmallFrameLeft
type VisualStyleElement.Window.SmallFrameLeft = class
Public Class VisualStyleElement.Window.SmallFrameLeft
- Dědičnost
-
VisualStyleElement.Window.SmallFrameLeft
Příklady
Následující příklad kódu ukazuje, jak vytvořit VisualStyleRenderer s VisualStyleElement vrácenou Active vlastností . Pokud chcete spustit tento příklad, vložte ho do formuláře Windows Form. Zpracujte Paint událost formuláře a zavolejte metodu DrawVisualStyleElementWindowSmallFrameLeft1
Paint z metody zpracování událostí a předejte e
ji jako PaintEventArgs.
public void DrawVisualStyleElementWindowSmallFrameLeft1(PaintEventArgs e)
{
if (VisualStyleRenderer.IsElementDefined(
VisualStyleElement.Window.SmallFrameLeft.Active))
{
VisualStyleRenderer renderer =
new VisualStyleRenderer(VisualStyleElement.Window.SmallFrameLeft.Active);
Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
renderer.DrawBackground(e.Graphics, rectangle1);
e.Graphics.DrawString("VisualStyleElement.Window.SmallFrameLeft.Active",
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 DrawVisualStyleElementWindowSmallFrameLeft1(ByVal e As PaintEventArgs)
If (VisualStyleRenderer.IsElementDefined( _
VisualStyleElement.Window.SmallFrameLeft.Active)) Then
Dim renderer As New VisualStyleRenderer _
(VisualStyleElement.Window.SmallFrameLeft.Active)
Dim rectangle1 As New Rectangle(10, 50, 50, 50)
renderer.DrawBackground(e.Graphics, rectangle1)
e.Graphics.DrawString("VisualStyleElement.Window.SmallFrameLeft.Active", _
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
Poznámky
Každá vlastnost VisualStyleElement.Window.SmallFrameLeft třídy vrátí VisualStyleElement pro jiný stav levého okraje malého okna, jako je například okno nástroje.
Vlastnosti
Active |
Získá prvek vizuálního stylu, který představuje levý okraj aktivního malého okna. |
Inactive |
Získá vizuální styl prvek, který představuje levý okraj neaktivní malé okno. |