다음을 통해 공유


ScrollView.ContentOrientation 속성

정의

콘텐츠가 가로 또는 세로로 스크롤하는 것을 선호하는지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property ScrollingContentOrientation ContentOrientation { ScrollingContentOrientation get(); void set(ScrollingContentOrientation value); };
/// [get: Microsoft.UI.Xaml.CustomAttributes.MUXPropertyDefaultValue(value="ScrollView::s_defaultContentOrientation")]
/// [set: Microsoft.UI.Xaml.CustomAttributes.MUXPropertyDefaultValue(value="ScrollView::s_defaultContentOrientation")]
ScrollingContentOrientation ContentOrientation();

void ContentOrientation(ScrollingContentOrientation value);
/// [Microsoft.UI.Xaml.CustomAttributes.MUXPropertyDefaultValue(value="ScrollView::s_defaultContentOrientation")]
/// [get: Microsoft.UI.Xaml.CustomAttributes.MUXPropertyDefaultValue(value="ScrollView::s_defaultContentOrientation")]
/// [set: Microsoft.UI.Xaml.CustomAttributes.MUXPropertyDefaultValue(value="ScrollView::s_defaultContentOrientation")]
ScrollingContentOrientation ContentOrientation();

void ContentOrientation(ScrollingContentOrientation value);
public ScrollingContentOrientation ContentOrientation { [Microsoft.UI.Xaml.CustomAttributes.MUXPropertyDefaultValue(value="ScrollView::s_defaultContentOrientation")] get; [Microsoft.UI.Xaml.CustomAttributes.MUXPropertyDefaultValue(value="ScrollView::s_defaultContentOrientation")] set; }
[Microsoft.UI.Xaml.CustomAttributes.MUXPropertyDefaultValue(value="ScrollView::s_defaultContentOrientation")]
public ScrollingContentOrientation ContentOrientation { [Microsoft.UI.Xaml.CustomAttributes.MUXPropertyDefaultValue(value="ScrollView::s_defaultContentOrientation")] get; [Microsoft.UI.Xaml.CustomAttributes.MUXPropertyDefaultValue(value="ScrollView::s_defaultContentOrientation")] set; }
var scrollingContentOrientation = scrollView.contentOrientation;
scrollView.contentOrientation = scrollingContentOrientation;
Public Property ContentOrientation As ScrollingContentOrientation

속성 값

콘텐츠의 기본 스크롤 방향입니다. 기본값은 Vertical입니다.

특성
Microsoft.UI.Xaml.CustomAttributes.MUXPropertyDefaultValueAttribute

설명

속성은 ContentOrientationMeasureOverride 동작에 ScrollPresenter영향을 줍니다.

  • 방향이 Vertical 적용되면 의 ScrollPresenter.Content 사용 가능한 너비가 의 ScrollPresenter사용 가능한 너비로 설정됩니다. 그렇지 않으면 의 사용 가능한 너비가 ScrollPresenter.Content 무한대입니다.
  • 방향이 Horizontal 적용되면 의 ScrollPresenter.Content 사용 가능한 높이가 의 ScrollPresenter사용 가능한 높이로 설정됩니다. 그렇지 않으면 의 사용 가능한 높이가 ScrollPresenter.Content 무한대입니다.

적용 대상