Hello,
Right now my grid is as this image shows: http://j.mp/xyQpwB, but I want to apply the color to all the "black bar".
I have the following code:
How can I achieve this?
Thanks,
Joan
Right now my grid is as this image shows: http://j.mp/xyQpwB, but I want to apply the color to all the "black bar".
I have the following code:
<Window x:Class="WpfApplication2.MainWindow" Title="MainWindow" Height="350" Width="525" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"> <Window.Resources> <SolidColorBrush x:Key="GridView_HeaderBackground" Color="LightBlue" /> <Style TargetType="telerik:GridViewHeaderCell"> <Setter Property="Background" Value="{StaticResource GridView_HeaderBackground}"/> </Style> </Window.Resources> <Grid> <telerik:RadGridView Name="radGridView1" ShowGroupPanel="False" RowIndicatorVisibility="Collapsed" > <telerik:RadGridView.Columns> <telerik:GridViewDataColumn Header="One" Width="100" /> </telerik:RadGridView.Columns> </telerik:RadGridView> </Grid></Window>How can I achieve this?
Thanks,
Joan