Im using a SfDataGrid data grid control in a Windows Store app project, im able to apply my costum styles to the diferent rows, but there is one row in particular that i want to have a diferent style. this is what i have so far.
<Page.Resources>
<Style x:Key="customCellStyle" TargetType="syncfusion:GridCell">
<Setter Property="BorderBrush" Value="#FF7fd0de" />
<Setter Property="BorderThickness" Value="1,0,0,1" />
<Setter Property="Padding" Value="0,0,0,0" />
<Setter Property="FontFamily" Value=" Segoe UI" />
<Setter Property="Foreground" Value="#FF2A2A2A" />
<Setter Property="FontSize" Value="14" />
<!--<Setter Property="Height" Value="59" />-->
</Style>
<Style x:Key="rowStyle" TargetType="syncfusion:VirtualizingCellsControl">
<Setter Property="Background" Value="WhiteSmoke" />
</Style>
<Style x:Key="altRowStyle" TargetType="syncfusion:VirtualizingCellsControl">
<Setter Property="Background" Value="White" />
</Style>
</Page.Resources>
<Grid x:Name="rootGrid" Style="{StaticResource RootGridStyle}" Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<Grid.RowDefinitions>
<RowDefinition Height="140"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<syncfusion:SfDataGrid Grid.Row="1" x:Name="datagrid" Width="1366"
AllowResizingColumns="True"
AutoGenerateColumns="True"
CellStyle="{StaticResource customCellStyle}"
ColumnSizer="Star"
RowHeight="65"
AlternatingRowStyle="{StaticResource altRowStyle}"
RowStyle="{StaticResource rowStyle}" />
<ProgressRing Grid.Row="1" IsActive="{Binding IsLoading}" />
<Button x:Name="backButton" Click="GoBack" IsEnabled="{Binding Frame.CanGoBack, ElementName=pageRoot}" Style="{StaticResource BackButtonReverseStyle}"/>
</Grid>
How can i apply a specific style to one of the rows, lets say row 3.