This question is locked. New answers and comments are not allowed.
I have a GridViewComboBox column that I have a custom layout for as shown below.
I would like to use an alternating background color for each item. Is there a way to specify alternating row color for the ComboBox items? Either in XAML or codebehind?
Thanks.
<telerik:GridViewComboBoxColumn.ItemTemplate> <DataTemplate> <StackPanel> <TextBlock Text="{Binding ProjectCode}" /> <TextBlock Text="{Binding ProjectDescription}" FontSize="10"/> </StackPanel> </DataTemplate> </telerik:GridViewComboBoxColumn.ItemTemplate>I would like to use an alternating background color for each item. Is there a way to specify alternating row color for the ComboBox items? Either in XAML or codebehind?
Thanks.