我有一个带有ItemsStackPanel的GridView,我希望在旋转设备时更改方向。例如,如果ItemsPanelTemplate定义如下:
<GridView.ItemsPanel>
<ItemsPanelTemplate>
<ItemsStackPanel GroupPadding="0,0,70,0" Orientation="Horizontal"/>
</ItemsPanelTemplate>
</GridView.ItemsPanel>
我想以编程方式将其转换为:
<GridView.ItemsPanel>
<ItemsPanelTemplate>
<ItemsStackPanel GroupPadding="0,0,70,0" Orientation="Vertical"/>
</ItemsPanelTemplate>
</GridView.ItemsPanel>
我无法弄清楚如何直接访问此对象。
答案 0 :(得分:0)
最好的方法是创建两个要使用的视图。看看Visual Studio 2012提供的“网格应用程序”模板。它有一个GridView和一个ListView。捕捉设备时隐藏GridView并通过VisualState显示ListView