This question is locked. New answers and comments are not allowed.
hi I tried to set the background to transparent, but not working. I tried to set the row background to transparent as well. but doesn't work either.
the following xaml showing transparent background at design time but not at runtime, however the transparent background works for the listbox.
the following xaml showing transparent background at design time but not at runtime, however the transparent background works for the listbox.
UserControl x:Class="SilverlightApplication1.MainPage" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" xmlns:local="clr-namespace:SilverlightApplication1" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="400"> <UserControl.Resources> <local:MyDataContext x:Key="context"/> </UserControl.Resources> <Grid x:Name="LayoutRoot" DataContext="{StaticResource context}" Background="LightBlue"> <Grid.ColumnDefinitions> <ColumnDefinition /> <ColumnDefinition Width="200" /> </Grid.ColumnDefinitions> <telerik:RadGridView ItemsSource="{Binding Data}" SelectionMode="Extended" SelectedItem="{Binding SelectedItem, Mode=TwoWay}" Background="Transparent" RowActivated="RadGridView_RowActivated"> <i:Interaction.Behaviors> <local:MyMultiSelectBehavior SelectedItems="{Binding SelectedItems, Source={StaticResource context}}" /> </i:Interaction.Behaviors> </telerik:RadGridView> <StackPanel Orientation="Vertical" Grid.Column="1"> <telerik:RadButton Content="Clear selected items" Click="Button_Click" /> <TextBlock Text="Selected items:"/> <ListBox ItemsSource="{Binding SelectedItems}" DisplayMemberPath="ID" Background="Transparent" /> </StackPanel> </Grid> </UserControl>