AdornerPanel.SetAdornerMargin メソッド
指定された要素に、指定された AdornerMargin 添付プロパティを設定します。
名前空間: Microsoft.Windows.Design.Interaction
アセンブリ: Microsoft.Windows.Design.Interaction (Microsoft.Windows.Design.Interaction.dll 内)
構文
'宣言
Public Shared Sub SetAdornerMargin ( _
obj As DependencyObject, _
value As Thickness _
)
public static void SetAdornerMargin(
DependencyObject obj,
Thickness value
)
public:
static void SetAdornerMargin(
DependencyObject^ obj,
Thickness value
)
static member SetAdornerMargin :
obj:DependencyObject *
value:Thickness -> unit
public static function SetAdornerMargin(
obj : DependencyObject,
value : Thickness
)
パラメーター
- obj
型: System.Windows.DependencyObject
添付プロパティの書き込み先の要素。
- value
型: System.Windows.Thickness
AdornerPanel に設定されるマージンの Thickness。
例
SetAdornerMargin メソッドを使用して、装飾の余白を指定する方法を次のコード例に示します。 詳細については、「チュートリアル : デザイン時装飾の作成」を参照してください。
' 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 セキュリティ
- 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
参照
Microsoft.Windows.Design.Interaction 名前空間