如何设置Silverlight中列表框的方向,即如何水平显示数据?
答案 0 :(得分:4)
修改ListBox的ItemsPanel并将其设置为水平定向的StackPanel:
<ListBox>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>