VisualStyleElement.Page.Up クラス

定義

アップダウン コントロール (スピン ボックス コントロール) のページ アップ インジケーターについて、各状態に対応する VisualStyleElement オブジェクトを提供します。 このクラスは継承できません。

public: ref class VisualStyleElement::Page::Up abstract sealed
public static class VisualStyleElement.Page.Up
type VisualStyleElement.Page.Up = class
Public Class VisualStyleElement.Page.Up
継承
VisualStyleElement.Page.Up

次のコード例では、 プロパティによって返される を使用して をVisualStyleRendererVisualStyleElement作成する方法をNormal示します。 この例を実行するには、Windows フォームに貼り付けます。 フォームPaintのイベントを処理し、イベント処理メソッドから メソッドをDrawVisualStyleElement_Page_Up1Paint呼び出し、 を としてPaintEventArgs渡しますe

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));
}
Public Sub DrawVisualStyleElement_Page_Up1(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.Page.Up.Normal)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.Page.Up.Normal)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.Page.Up.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.Page.Up アップダウンコントロールまたはスピンボックスコントロールのページアップインジケーターの異なる状態に対して を返 VisualStyleElement します。

プロパティ

Disabled

アップダウン コントロール (スピン ボックス コントロール) について、無効状態のページ アップ インジケーターを表す visual スタイル要素を取得します。

Hot

アップダウン コントロール (スピン ボックス コントロール) について、ホットな状態のページ アップ インジケーターを表す visual スタイル要素を取得します。

Normal

アップダウン コントロール (スピン ボックス コントロール) について、通常状態のページ アップ インジケーターを表す visual スタイル要素を取得します。

Pressed

アップダウン コントロール (スピン ボックス コントロール) について、押下状態のページ アップ インジケーターを表す visual スタイル要素を取得します。

適用対象

こちらもご覧ください