ScrollView.ContentOrientation 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
콘텐츠가 가로 또는 세로로 스크롤하는 것을 선호하는지 여부를 나타내는 값을 가져오거나 설정합니다.
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
설명
속성은 ContentOrientation
의 MeasureOverride
동작에 ScrollPresenter
영향을 줍니다.
- 방향이
Vertical
적용되면 의ScrollPresenter.Content
사용 가능한 너비가 의ScrollPresenter
사용 가능한 너비로 설정됩니다. 그렇지 않으면 의 사용 가능한 너비가ScrollPresenter.Content
무한대입니다. - 방향이
Horizontal
적용되면 의ScrollPresenter.Content
사용 가능한 높이가 의ScrollPresenter
사용 가능한 높이로 설정됩니다. 그렇지 않으면 의 사용 가능한 높이가ScrollPresenter.Content
무한대입니다.