Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to make each groupheader of EXPANDER make in a different color ?

Colors are stored into my xml file (source). But I can only add one color for all my groupheaders...

  <CollectionViewSource x:Key="SmsView"  Source="{StaticResource SmsData}">
    <CollectionViewSource.SortDescriptions>
        <scm:SortDescription PropertyName="date" Direction="Descending" />
        <scm:SortDescription PropertyName="time" Direction="Descending" />

    </CollectionViewSource.SortDescriptions>

    <CollectionViewSource.GroupDescriptions>
        <dat:PropertyGroupDescription PropertyName="recipient" />

    </CollectionViewSource.GroupDescriptions>
</CollectionViewSource>

then:

<DataGrid Loaded="dataGrid1_Loaded" HorizontalGridLinesBrush="White" VerticalGridLinesBrush="White" ItemsSource="{Binding}" VerticalScrollBarVisibility="Visible" HorizontalScrollBarVisibility="Hidden" DataContext="{StaticResource SmsView}"  HeadersVisibility="None" AutoGenerateColumns="False" Name="dataGrid1" GridLinesVisibility="All" IsReadOnly="True" Margin="-1.911,0,0.735,398" BorderThickness="0" UseLayoutRounding="False" IsEnabled="True" SelectionChanged="dataGrid1_SelectionChanged" MouseDoubleClick="dataGrid1_MouseDoubleClick" HorizontalContentAlignment="Stretch" VerticalAlignment="Stretch">
    <DataGrid.GroupStyle>
        <GroupStyle AlternationCount="7" >
            <GroupStyle.ContainerStyle>
                <Style TargetType="{x:Type GroupItem}">
                    <Setter Property="Template">
                        <Setter.Value>
                            <ControlTemplate TargetType="{x:Type GroupItem}">


                                <Expander IsExpanded="False">
                                    <Expander.Header>

                                        <Label Margin="0,0,0,0" Padding="0,0,0,0" Height="15" Content="{Binding}"></Label>
                                    </Expander.Header>
                                    <Expander.Content>
                                        <ItemsPresenter/>
                                    </Expander.Content>
                                </Expander>
                            </ControlTemplate>
                        </Setter.Value>
                    </Setter>
                </Style>
            </GroupStyle.ContainerStyle>
        </GroupStyle>
    </DataGrid.GroupStyle>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.