2

我想斑马纹一个列表框,它是从搜索返回的可观察对象集合生成的。

代码是这样的

               <ListBox x:Name="searchResultsListBox" Margin="0, 115, -12, 0">
                    <ListBox.ItemTemplate>
                        <DataTemplate>
                            <StackPanel Orientation="Horizontal" Margin="0,0,0,17">
                                <StackPanel Width="411">
                                    <TextBlock Text="{Binding Registration}" Margin="12, -6, 12, 0" TextWrapping="Wrap" FontSize="30" Foreground="White"/>
                                    <TextBlock Text="{Binding SalePrice}" Margin="12, -6, 12, 0" TextWrapping="Wrap" Style="{StaticResource PhoneTextSubtleStyle}" Foreground="#AFA7A0"/>
                                </StackPanel>
                            </StackPanel>
                        </DataTemplate>
                    </ListBox.ItemTemplate>
                </ListBox>

我将如何对其进行条纹处理,使第一个<stackpanel>是黄色,第二个是白色,第三个是黄色等等?

谢谢,丹尼。

4

1 回答 1

0

创建一个您将在列表框中使用的自定义控件。这将包含:

<StackPanel Orientation="Horizo​​ntal" Margin="0,0,0,17">
<Border Width="411">
<TextBlock Text="{Binding Registration}" Margin="12, -6, 12 , 0" TextWrapping="Wrap" FontSize="30" Foreground="White"/>
<TextBlock Text="{Binding SalePrice}" Margin="12, -6, 12, 0" TextWrapping="Wrap" Style=" {StaticResource PhoneTextSubtleStyle}" Foreground="#AFA7A0"/>
</Border >
</StackPanel>

维护可观察集合项中的索引。
将列表框绑定到可观察集合。

于 2012-08-06T11:57:36.100 回答