StackLayout.Orientation 属性

定义

获取或设置指示子元素的定位方向的值。 默认值是 Vertical。 这是一种可绑定属性。

public:
 property Microsoft::Maui::Controls::StackOrientation Orientation { Microsoft::Maui::Controls::StackOrientation get(); void set(Microsoft::Maui::Controls::StackOrientation value); };
public Microsoft.Maui.Controls.StackOrientation Orientation { get; set; }
member this.Orientation : Microsoft.Maui.Controls.StackOrientation with get, set
Public Property Orientation As StackOrientation

属性值

指示子布局流的方向的 A StackOrientation 。 默认值为 Vertical。

注解

如果堆栈已位于父布局内部,则设置 StackLayout 的方向会触发布局周期。 若要防止浪费的布局周期,在将 StackLayout 添加到父级之前设置方向。

适用于