silverlight – 如何在ListBox中的项目之间显示分隔符?

我在 Windows Phone 7应用程序中使用ListBox控件,我想在列表行之间显示分隔符/行.
虽然很多(不是wp7)ListBox示例似乎都有分隔符,但我无法找到有关此内容的任何信息.

解决方法

受到nestorArturo的启发,发现了边境控制.

将ItemTemplate内容包装在Border控件中并指定BorderThickness和BorderBrush非常容易.我这样做了,因为它不需要在ItemTemplate中更改我的网格.

边框控件在这里描述:http://www.silverlightshow.net/items/Using-the-Border-control-in-Silverlight-2-Beta-1-.aspx.

您可以在下面看到我如何使用它:

<ListBox Background="White" ItemsSource="{Binding Mode=OneWay,Path=MyPath}" Name="listName" SelectionChanged="listName_SelectionChanged">
                    <ListBox.ItemContainerStyle>
                        <Style targettype="ListBoxItem">
                            <Setter Property="HorizontalContentAlignment" Value="Stretch"></Setter>
                        </Style>
                    </ListBox.ItemContainerStyle>
                    <ListBox.ItemTemplate>
                        <DataTemplate>
here -->                     <Border BorderThickness="0,10,10" BorderBrush="Black">
                            <Grid Width="auto" HorizontalAlignment="Stretch" >
                                <Grid.ColumnDeFinitions>
                                    <ColumnDeFinition Width="auto" />
                                    <ColumnDeFinition Width="*" />
                                    <ColumnDeFinition Width="48" />
                                </Grid.ColumnDeFinitions>
                                <TextBlock VerticalAlignment="Center" FontSize="36" FontWeight="Bold" Grid.Column="0" Foreground="Black" Text="{Binding Path=Title}" Name="title"/>
                                <TextBlock VerticalAlignment="Center" HorizontalAlignment="Right" Grid.Column="1" Foreground="Black" Text="{Binding Path=Location}" Name="location"/>
                                <Image VerticalAlignment="Center" Grid.Column="2" Width="48" Height="48" Source="ApplicationIcon.jpg"/>
                            </Grid>
and here -->                </Border>
                        </DataTemplate>
                    </ListBox.ItemTemplate>
                </ListBox>

相关文章

如何在Silverlight4(XAML)中绑定IsEnabled属性?我试过简单的...
我正在编写我的第一个vb.net应用程序(但我也会在这里标记c#,...
ProcessFile()是在UIThread上运行还是在单独的线程上运行.如...
我从同行那里听说,对sharepoint的了解对职业生涯有益.我们不...
我正在尝试保存一个类我的类对象的集合.我收到一个错误说明:...
我需要根据Silverlight中的某些配置值设置给定控件的Style.我...