Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了 GridView 应用程序,并在将项目与网格绑定后的 itemspage 中,当我将 ScrollViewer 旋转到 Vertical 时,它显示为 4 行和 5 列。
它只显示一列。如何控制行数和列数?
您可以根据未共享的布局以多种方式控制它。如果您想要一个固定数字 - 确保 GridView 的高度/宽度是您想要显示的列数/行数的正确倍数。例如,对于默认的 GridView,如果你想要 3 行,你可以这样:
<GridView Height="700"> <GridView.ItemContainerStyle> <Style TargetType="GridViewItem"> <Setter Property="Height" Value="200" /> ...