Click here to Skip to main content
15,882,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Can anyone tell me why the DataTriggers in the following XAML code are setting the background color of the entire row of the DataGrid and not the individual cell? I have the TargetType set to "DataGridCell".

<pre lang="xml"><DataGrid>
            <DataGrid.CellStyle>
                <Style TargetType="DataGridCell">
                    <Style.Triggers>
                        <DataTrigger Binding="{Binding Path=aciton}" Value="ADDED">
                            <Setter Property="Background" Value="LightGreen"/>
                        </DataTrigger>
                        <DataTrigger Binding="{Binding Path=aciton}" Value="UPDATED">
                            <Setter Property="Background" Value="LightBlue"/>
                        </DataTrigger>
                        <DataTrigger Binding="{Binding Path=aciton}" Value="REMOVED">
                            <Setter Property="Background" Value="Salmon"/>
                        </DataTrigger>
                    </Style.Triggers>
                </Style>
            </DataGrid.CellStyle>
        </DataGrid>
Posted
Comments
Sandeep Mewara 4-Apr-13 12:33pm    
I have the TargetType set to "DataGridCell".
and it applies to all of them that satisfy condition! This looks to you like full row.
Clifford Nelson 4-Apr-13 17:25pm    
I know it is a nit, but action is misspelled

1 solution

I would suspect that every cell in the row probably is looking at the same property aciton. Therefore when the value of aciton changes, every cell in the row gets the same color.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900