VisualStyleElement.TrackBar.ThumbVertical.Normal 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
표준 상태의 세로 트랙 표시줄 슬라이더를 나타내는 비주얼 스타일 요소를 가져옵니다.
public:
static property System::Windows::Forms::VisualStyles::VisualStyleElement ^ Normal { System::Windows::Forms::VisualStyles::VisualStyleElement ^ get(); };
public static System.Windows.Forms.VisualStyles.VisualStyleElement Normal { get; }
static member Normal : System.Windows.Forms.VisualStyles.VisualStyleElement
Public Shared ReadOnly Property Normal As VisualStyleElement
속성 값
표준 상태의 세로 트랙 표시줄 슬라이더를 나타내는 VisualStyleElement입니다.
예제
다음 코드 예제에는 만드는 방법을 보여 줍니다는 VisualStyleRenderer 사용 하 여 합니다 VisualStyleElement 반환한는 Normal 속성입니다. 이 예제를 실행 하려면 Windows 폼에 붙여 넣습니다. 양식의 처리 Paint 이벤트 및 호출 합니다 DrawVisualStyleElementTrackBarThumbVertical1
메서드에서 Paint 전달 하는 이벤트 처리 메서드를 e
으로 PaintEventArgs입니다.
public void DrawVisualStyleElementTrackBarThumbVertical1(PaintEventArgs e)
{
if (VisualStyleRenderer.IsElementDefined(
VisualStyleElement.TrackBar.ThumbVertical.Normal))
{
VisualStyleRenderer renderer =
new VisualStyleRenderer(VisualStyleElement.TrackBar.ThumbVertical.Normal);
Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
renderer.DrawBackground(e.Graphics, rectangle1);
e.Graphics.DrawString("VisualStyleElement.TrackBar.ThumbVertical.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 DrawVisualStyleElementTrackBarThumbVertical1(ByVal e As PaintEventArgs)
If (VisualStyleRenderer.IsElementDefined( _
VisualStyleElement.TrackBar.ThumbVertical.Normal)) Then
Dim renderer As New VisualStyleRenderer _
(VisualStyleElement.TrackBar.ThumbVertical.Normal)
Dim rectangle1 As New Rectangle(10, 50, 50, 50)
renderer.DrawBackground(e.Graphics, rectangle1)
e.Graphics.DrawString("VisualStyleElement.TrackBar.ThumbVertical.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 반환한 합니다 Normal 만들 속성을 VisualStyleRenderer합니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET