VisualStyleElement.Window.MdiSysButton 클래스

정의

비주얼 스타일이 사용된 MDI(다중 문서 인터페이스) 자식 창에 있는 시스템 단추의 각 상태에 대한 VisualStyleElement 개체를 제공합니다. 이 클래스는 상속될 수 없습니다.

public: ref class VisualStyleElement::Window::MdiSysButton abstract sealed
public static class VisualStyleElement.Window.MdiSysButton
type VisualStyleElement.Window.MdiSysButton = class
Public Class VisualStyleElement.Window.MdiSysButton
상속
VisualStyleElement.Window.MdiSysButton

예제

다음 코드 예제에는 만드는 방법을 보여 줍니다는 VisualStyleRenderer 사용 하 여 합니다 VisualStyleElement 반환한는 Normal 속성입니다. 이 예제를 실행 하려면 Windows 폼에 붙여 넣습니다. 양식의 처리 Paint 이벤트 및 호출 합니다 DrawVisualStyleElementWindowMdiSysButton1 메서드에서 Paint 전달 하는 이벤트 처리 메서드를 e 으로 PaintEventArgs입니다.

public void DrawVisualStyleElementWindowMdiSysButton1(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.Window.MdiSysButton.Normal))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.Window.MdiSysButton.Normal);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.Window.MdiSysButton.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 DrawVisualStyleElementWindowMdiSysButton1(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.Window.MdiSysButton.Normal)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.Window.MdiSysButton.Normal)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.Window.MdiSysButton.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.Window.MdiSysButton 가져옵니다 클래스를 VisualStyleElement 의 여러 상태에 대 한 합니다 시스템 MDI 자식 창에 단추. 이 단추를 엽니다는 창을 메뉴 (라고도 합니다 시스템 메뉴 또는 컨트롤 메뉴)를 클릭할 때.

속성

Disabled

MDI(다중 문서 인터페이스) 자식 창에 있는 비활성 상태의 시스템 단추를 나타내는 비주얼 스타일 요소를 가져옵니다.

Hot

MDI(다중 문서 인터페이스) 자식 창에 있는 활성 상태의 시스템 단추를 나타내는 비주얼 스타일 요소를 가져옵니다.

Normal

MDI(다중 문서 인터페이스) 자식 창에 있는 표준 상태의 시스템 단추를 나타내는 비주얼 스타일 요소를 가져옵니다.

Pressed

MDI(다중 문서 인터페이스) 자식 창에 있는 누름 상태의 시스템 단추를 나타내는 비주얼 스타일 요소를 가져옵니다.

적용 대상

추가 정보