列表框水平对齐换行

时间:2013-07-25 07:04:47

标签: xaml listbox panorama-control itemspanel

如何在水平定向的列表框中的新行上启动项目?到目前为止,这是我的代码,但它显示了1行中的项目,提前感谢

<phone:PanoramaItem Header="Geklassifiseerd" Orientation="Horizontal" Foreground="Black">
            <ListBox x:Name="geklassifisseerd_list">
                <ListBox.ItemTemplate>
                    <DataTemplate>
                        <StackPanel>
                            <TextBlock Text="{Binding Name}" TextWrapping="Wrap" 
                                           Margin="10,0" 
                                           Foreground="Black"
                                           FontSize="20"
                                           />
                            <TextBlock Text="{Binding Date}" 
                                           TextWrapping="Wrap" 
                                           Foreground="Black"
                                           Margin="10,-2,10,0" 
                                           FontSize="20"
                                           />
                            <TextBlock Text="{Binding Image_uri}" 
                                           TextWrapping="Wrap" 
                                           Margin="10,-2,10,0" 
                                           Foreground="Black"
                                          />
                        </StackPanel>
                    </DataTemplate>
                </ListBox.ItemTemplate>

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

            </ListBox>

1 个答案:

答案 0 :(得分:0)

得到了答案,我在itemspanetemplate中使用了一个wrappanel,导致程序集发生冲突,我通过nugget重新安装Microsoft.phhone.controls程序集解决了这个问题

               <ItemsControl.ItemsPanel>
                    <ItemsPanelTemplate>
                        <Controls:WrapPanel Orientation="Horizontal" />
                    </ItemsPanelTemplate>
                </ItemsControl.ItemsPanel>