VisualStyleElement.ExplorerBar.HeaderPin クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
エクスプローラー バーにピンの形で表示される [自動的に隠す] ボタンの各状態用の VisualStyleElement オブジェクトを提供します。 このクラスは継承できません。
public: ref class VisualStyleElement::ExplorerBar::HeaderPin abstract sealed
public static class VisualStyleElement.ExplorerBar.HeaderPin
type VisualStyleElement.ExplorerBar.HeaderPin = class
Public Class VisualStyleElement.ExplorerBar.HeaderPin
- 継承
-
VisualStyleElement.ExplorerBar.HeaderPin
例
次のコード例では、 プロパティによって返される を使用して をVisualStyleRendererVisualStyleElement作成する方法をNormal示します。 この例を実行するには、Windows フォームに貼り付けます。 フォームPaintのイベントを処理し、イベント処理メソッドから メソッドをDrawVisualStyleElementExplorerBarHeaderPin1
Paint呼び出し、 を としてPaintEventArgs渡しますe
。
public void DrawVisualStyleElementExplorerBarHeaderPin1(PaintEventArgs e)
{
if (VisualStyleRenderer.IsElementDefined(
VisualStyleElement.ExplorerBar.HeaderPin.Normal))
{
VisualStyleRenderer renderer =
new VisualStyleRenderer(VisualStyleElement.ExplorerBar.HeaderPin.Normal);
Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
renderer.DrawBackground(e.Graphics, rectangle1);
e.Graphics.DrawString("VisualStyleElement.ExplorerBar.HeaderPin.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 DrawVisualStyleElementExplorerBarHeaderPin1(ByVal e As PaintEventArgs)
If (VisualStyleRenderer.IsElementDefined( _
VisualStyleElement.ExplorerBar.HeaderPin.Normal)) Then
Dim renderer As New VisualStyleRenderer _
(VisualStyleElement.ExplorerBar.HeaderPin.Normal)
Dim rectangle1 As New Rectangle(10, 50, 50, 50)
renderer.DrawBackground(e.Graphics, rectangle1)
e.Graphics.DrawString("VisualStyleElement.ExplorerBar.HeaderPin.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.ExplorerBar.HeaderPinエクスプローラー バーの [自動非表示] ボタンの異なる状態に対して を返VisualStyleElementします。
プロパティ
Hot |
ピンの形で表示される [自動的に隠す] ボタンを表す、ホットな状態の visual スタイル要素を取得します。 |
Normal |
ピンの形で表示される [自動的に隠す] ボタンを表す、通常の状態の visual スタイル要素を取得します。 |
Pressed |
ピンの形で表示される [自動的に隠す] ボタンを表す、押された状態の visual スタイル要素を取得します。 |
SelectedHot |
ピンの形で表示される、選択された [自動的に隠す] ボタンを表す、ホットな状態の visual スタイル要素を取得します。 |
SelectedNormal |
ピンの形で表示される、選択された [自動的に隠す] ボタンを表す、通常の状態の visual スタイル要素を取得します。 |
SelectedPressed |
ピンの形で表示される、選択された [自動的に隠す] ボタンを表す、押された状態の visual スタイル要素を取得します。 |
適用対象
こちらもご覧ください
.NET