or
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?

gvColumn2.Width =
new GridViewLength(1, GridViewLengthUnitType.Star);
It worked fine with Telerik version 2012 Q1. However, it doesn't work when I installed Telerik WPF v.2012.2.912.40.
Please suggest!
Thanks and regards

//Discount Total CellSpan spanDiscountTotal = new Span(disountTotal.ToString("C", CultureInfo.CreateSpecificCulture("en-GB")));spanDiscountTotal.StyleName = "styleTableTotal";Paragraph paragraphDiscountTotal = new Paragraph();paragraphDiscountTotal.Inlines.Add(spanDiscountTotal);TableCell cellDiscountTotal = new TableCell();cellDiscountTotal.Borders.SetTop(new Border(5 ,BorderStyle.Single, Colors.Green));cellDiscountTotal.Blocks.Add(paragraphDiscountTotal);cellDiscountTotal.Borders.SetTop(new Border(5 ,BorderStyle.Single, Colors.Green));