VisualStyleElement.Page.Up.Normal 속성

정의

표준 상태의 up-down 또는 spin box 컨트롤의 페이지 위로(Up) 표시기를 나타내는 비주얼 스타일 요소를 가져옵니다.

public static System.Windows.Forms.VisualStyles.VisualStyleElement Normal { get; }

속성 값

표준 상태의 up-down 또는 spin box 컨트롤의 페이지 위로(Up) 표시기를 나타내는 VisualStyleElement입니다.

예제

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

public void DrawVisualStyleElement_Page_Up1(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.Page.Up.Normal))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.Page.Up.Normal);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.Page.Up.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));
}

설명

사용할 수는 VisualStyleElement 반환한 합니다 Normal 만들 속성을 VisualStyleRenderer합니다.

적용 대상

제품 버전
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9