Hi,
How to show lines after each row in xamWebGrid.Currently its showing rows without lines. Bur i want to show line of something like 1 thikness after each row as in Silverlight datagrid. So plz tell how can i give such style for this datagrid so that i can distingiush each row.
Thanks in advance,
Mahendra
Hi Mahendra,
To do this, you can modify the style for the CellControl, so that it also has a border on the bottom:
<Style TargetType="ig:CellControl" x:Key="BorderStyle">
<Setter Property="BorderThickness" Value="0,0,1,1"></Setter>
</Style>
<ig:XamWebGrid x:Name="DataGrid1" CellStyle="{StaticResource BorderStyle}" />
-SteveZ