次の方法で共有


AdornerPanel.SetAdornerHorizontalAlignment メソッド

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

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

構文

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

パラメーター

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

' 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 名前空間

その他の技術情報

装飾アーキテクチャ

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