How do i set alternate row colors for WPF Listview. If i have only 1 list I can set in XAML, but in my case, the alternate row colors need to be changed based on the list. For example,i have 3 diff lists...
1) order by Company name,
2) order by Sector
3) order by Market value
Each list should have their own alternate row colors.
How can i do that(in C# or in XAML file).Any Ideas/Suggestions would be aprreciated

link|improve this question
feedback

1 Answer

This should work no matter what you do to the list since ItemsControl.AlternationIndex is a dependency property and should get updated:

<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication1"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
    <Style TargetType="ListBoxItem">
        <Style.Triggers>
            <Trigger Property="ItemsControl.AlternationIndex"  Value="0">
                <Setter Property="Background" Value="AliceBlue" />
            </Trigger>
        </Style.Triggers>
    </Style>
</Window.Resources>
<StackPanel>  
    <ListBox Name="bob" AlternationCount="2">
        <ListBoxItem Content="Herald"/>
        <ListBoxItem Content="Kumar" />
        <ListBoxItem Content="Bill" />
        <ListBoxItem Content="Dudley" />
        <ListBoxItem Content="Jack" />
    </ListBox>
    <Button Click="Button_Click">boo</Button>
</StackPanel>

Code Behind to test changes to items:

Private Sub Button_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs)
    Dim item1 As ListBoxItem = bob.Items(4)
    bob.Items.Remove(item1)
    bob.Items.Insert(0, item1)
End Sub
link|improve this answer
If you meant that you wanted a different row color used depending on the sort then I am thinking you would want to use MultiTrigger instead, where one trigger property is the alternation index and one property is hooked up to a property that indicates what sort is being used. – J Cooper Nov 28 '10 at 1:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.