VisualStyleElement.TrackBar.Track クラス
定義
水平トラック バーのトラック用に VisualStyleElement を提供します。Provides a VisualStyleElement for the track for a horizontal track bar. このクラスは継承できません。This class cannot be inherited.
public: ref class VisualStyleElement::TrackBar::Track abstract sealed
public static class VisualStyleElement.TrackBar.Track
type VisualStyleElement.TrackBar.Track = class
Public Class VisualStyleElement.TrackBar.Track
- 継承
-
VisualStyleElement.TrackBar.Track
例
プロパティによってVisualStyleRenderer VisualStyleElement返されるを使用してを作成する方法を次のコード例に示します。 NormalThe following code example demonstrates how to create a VisualStyleRenderer with the VisualStyleElement returned by the Normal property. この例を実行するには、Windows フォームに貼り付けます。To run this example, paste it into a Windows Form. フォームPaintのイベントを処理し、をDrawVisualStyleElementTrackBarTrack1
としてPaint渡しe
てPaintEventArgs、イベント処理メソッドからメソッドを呼び出します。Handle the form's Paint event and call the DrawVisualStyleElementTrackBarTrack1
method from the Paint event-handling method, passing e
as PaintEventArgs.
public void DrawVisualStyleElementTrackBarTrack1(PaintEventArgs e)
{
if (VisualStyleRenderer.IsElementDefined(
VisualStyleElement.TrackBar.Track.Normal))
{
VisualStyleRenderer renderer =
new VisualStyleRenderer(VisualStyleElement.TrackBar.Track.Normal);
Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
renderer.DrawBackground(e.Graphics, rectangle1);
e.Graphics.DrawString("VisualStyleElement.TrackBar.Track.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 DrawVisualStyleElementTrackBarTrack1(ByVal e As PaintEventArgs)
If (VisualStyleRenderer.IsElementDefined( _
VisualStyleElement.TrackBar.Track.Normal)) Then
Dim renderer As New VisualStyleRenderer _
(VisualStyleElement.TrackBar.Track.Normal)
Dim rectangle1 As New Rectangle(10, 50, 50, 50)
renderer.DrawBackground(e.Graphics, rectangle1)
e.Graphics.DrawString("VisualStyleElement.TrackBar.Track.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
注釈
クラスのプロパティはNormal 、水平トラックVisualStyleElementバーのトラックを表すを返します。 VisualStyleElement.TrackBar.TrackThe Normal property of the VisualStyleElement.TrackBar.Track class returns a VisualStyleElement that represents the track for a horizontal track bar.
プロパティ
Normal |
水平トラック バーのトラックを表す visual スタイル要素を取得します。Gets a visual style element that represents the track for a horizontal track bar. |