Hi,
I have my GridView defiined in xaml with a custom GridViewHeadCell style.
I canot figure out how to get vertical lines to be drawn to separate the column headers. Does anybody know what I can do to have some drawn?
I have my GridView defiined in xaml with a custom GridViewHeadCell style.
<telerik:RadGridView x:Name="RadGrid" Margin="5" IsReadOnly="True" AutoGenerateColumns="False" CanUserInsertRows="False" ShowGroupPanel="False" DataLoadMode="Asynchronous" IsSynchronizedWithCurrentItem="True" GridLinesVisibility="Both" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" ItemsSource="{Binding CurrentParticlesList}"> <telerik:RadGridView.Resources> <Style TargetType="telerik:GridViewHeaderCell"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="telerik:GridViewHeaderCell"> <ContentPresenter> <ContentPresenter.LayoutTransform> <RotateTransform Angle="270" /> </ContentPresenter.LayoutTransform> <ContentPresenter.HorizontalAlignment> Center </ContentPresenter.HorizontalAlignment> <ContentPresenter.Margin> 2,5,2,10 </ContentPresenter.Margin> </ContentPresenter> </ControlTemplate> </Setter.Value> </Setter> </Style> </telerik:RadGridView.Resources> </telerik:RadGridView>I canot figure out how to get vertical lines to be drawn to separate the column headers. Does anybody know what I can do to have some drawn?