次の方法で共有


AdornerPanel.SetAdornerVerticalAlignment メソッド

指定された要素に、指定された AdornerVerticalAlignment 添付プロパティを設定します。

名前空間:  Microsoft.Windows.Design.Interaction
アセンブリ:  Microsoft.Windows.Design.Interaction (Microsoft.Windows.Design.Interaction.dll 内)

構文

'宣言
Public Shared Sub SetAdornerVerticalAlignment ( _
    obj As DependencyObject, _
    value As AdornerVerticalAlignment _
)
public static void SetAdornerVerticalAlignment(
    DependencyObject obj,
    AdornerVerticalAlignment value
)
public:
static void SetAdornerVerticalAlignment(
    DependencyObject^ obj, 
    AdornerVerticalAlignment value
)
static member SetAdornerVerticalAlignment : 
        obj:DependencyObject * 
        value:AdornerVerticalAlignment -> unit 
public static function SetAdornerVerticalAlignment(
    obj : DependencyObject, 
    value : AdornerVerticalAlignment
)

パラメーター

SetAdornerVerticalAlignment メソッドを使用して、装飾の垂直方向の配置を指定する方法を次のコード例に示します。 詳細については、「チュートリアル : デザイン時装飾の作成」を参照してください。

' The slider extends the full width of the control it adorns.
AdornerPanel.SetAdornerHorizontalAlignment( _
    opacitySlider, _
    AdornerHorizontalAlignment.Stretch)

' Position the adorner above the control it adorns.
AdornerPanel.SetAdornerVerticalAlignment( _
    opacitySlider, _
    AdornerVerticalAlignment.OutsideTop)

' Position the adorner 5 pixels above the control. 
AdornerPanel.SetAdornerMargin( _
    opacitySlider, _
    New Thickness(0, 0, 0, 5))
// The slider extends the full width of the control it adorns.
AdornerPanel.SetAdornerHorizontalAlignment( 
    opacitySlider, 
    AdornerHorizontalAlignment.Stretch);

// Position the adorner above the control it adorns.
AdornerPanel.SetAdornerVerticalAlignment(
    opacitySlider, 
    AdornerVerticalAlignment.OutsideTop);

// Position the adorner 5 pixels above the control. 
AdornerPanel.SetAdornerMargin(
    opacitySlider, 
    new Thickness(0, 0, 0, 5));

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

参照

AdornerPanel クラス

Microsoft.Windows.Design.Interaction 名前空間

その他の技術情報

装飾アーキテクチャ

機能プロバイダーと機能コネクタ