Layout.SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定 IndexBasedLayoutOrientation
屬性的值。
protected:
virtual void SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation orientation) = SetIndexBasedLayoutOrientation;
void SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation const& orientation);
protected void SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation orientation);
function setIndexBasedLayoutOrientation(orientation)
Protected Sub SetIndexBasedLayoutOrientation (orientation As IndexBasedLayoutOrientation)
參數
- orientation
- IndexBasedLayoutOrientation
列舉值,指出方向,如果有的話,專案會根據來源集合中的索引進行配置。
範例
public class MyHorizontalLayout : NonVirtualizingLayout
{
public class MyHorizontalLayout()
{
SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation.LeftToRight);
Debug.Assert(this.IndexBasedLayoutOrientation == IndexBasedLayoutOrientation.LeftToRight);
}
}