Silverlight 3列表框

时间:2009-07-22 13:29:17

标签: silverlight

如何设置Silverlight中列表框的方向,即如何水平显示数据?

1 个答案:

答案 0 :(得分:4)

修改ListBox的ItemsPanel并将其设置为水平定向的StackPanel:

<ListBox>
    <ListBox.ItemsPanel>
        <ItemsPanelTemplate>
            <StackPanel Orientation="Horizontal"/>
        </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
</ListBox>