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
)
매개 변수
- obj
형식: System.Windows.DependencyObject
연결된 속성을 쓸 요소입니다.
- value
형식: Microsoft.Windows.Design.Interaction.AdornerHorizontalAlignment
AdornerPanel에 설정할 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 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.
참고 항목
참조
Microsoft.Windows.Design.Interaction 네임스페이스