VariableSizedWrapGrid.Orientation 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定子專案排列的方向。
public:
property Orientation Orientation { Orientation get(); void set(Orientation value); };
Orientation Orientation();
void Orientation(Orientation value);
public Orientation Orientation { get; set; }
var orientation = variableSizedWrapGrid.orientation;
variableSizedWrapGrid.orientation = orientation;
Public Property Orientation As Orientation
<VariableSizedWrapGrid Orientation="orientationMemberName" />
屬性值
列舉值。 預設值為 Vertical。
備註
Orientation 屬性指定方格是否會在換行之前將項目新增到列或欄。
當值為 Vertical時,方格會將資料行中的專案從上到下新增,然後從左至右換行,如下所示:
項目 1 | 專案 4 | 專案 7 |
項目 2 | 專案 5 | 專案 8 |
項目 3 | 專案 6 | 專案 9 |
當值為 Horizontal時,方格會從左至右新增資料列中的專案,然後從上到下換行,如下所示:
項目 1 | 項目 2 | 項目 3 |
專案 4 | 專案 5 | 專案 6 |
專案 7 | 專案 8 | 專案 9 |