Using latest .NET 4 version (2012.2.912.40) I am trying to get my
RadGridView rows to have transparent background but given this
XAML (relevant parts only) all rows simply disappear:xmlns:t="http://schemas.telerik.com/2008/xaml/presentation"
<Grid>
<Grid.Resources> <Style x:Key="gvrStyle" TargetType="t:GridViewRow"> <Setter Property="Background" Value="Transparent"/> </Style> </Grid.Resources>
<t:RadGridView x:Name="rgvSessions" Background="Transparent" SelectionMode="Single" ItemsSource="{Binding ItemsSource}"
AutoGenerateColumns="False"
RowStyle="{StaticResource ResourceKey=gvrStyle}"
SelectedItem="{Binding SelectedItem, Mode=OneWayToSource}"></t:RadGridView>
</Grid>
When I remove the RowStyle="{StaticResource ResourceKey=gvrStyle}
from the RadGridView the rows reappear but the background is white.
This happens when ever RowStyle property is used even if the only
property I'm setting in the style is Height, for example.
Anyway, the RadGridView itself is transparent but how do I get the rows
to be transparent as well?