I have a RadListView with a Grid Layout (see snippet below).
This does round the corners as expected, however, there is white space surrounding the items that the missing corners reveal. Is there a way to remove this white background?
<Grid Padding="50,0,25,0"> <telerikDataControls:RadListView x:Name="agendaListView" ItemsSource="{Binding AgendaItems}" IsLoadOnDemandEnabled="{Binding ReachedAgendaEnd, Converter={StaticResource ReverseBooleanConverter}}" IsLoadOnDemandActive="{Binding IsLoadOnDemandActive}" LoadOnDemandBufferItemsCount="50" LoadOnDemandMode="Automatic" BackgroundColor="#f6f6f8" IsVisible="{Binding IsFirstLoad, Converter={StaticResource ReverseBooleanConverter}}"> <telerikDataControls:RadListView.ItemTemplate> <DataTemplate> <telerikListView:ListViewTemplateCell> <telerikListView:ListViewTemplateCell.View> <Frame CornerRadius="10" Padding="0" IsClippedToBounds="True" HasShadow="True"> <Grid ColumnSpacing="0"> <Grid.ColumnDefinitions> <ColumnDefinition Width="100" /> <ColumnDefinition Width="*" /> </Grid.ColumnDefinitions> <StackLayout Grid.Column="0" BackgroundColor="#00AEFF"> <StackLayout Orientation="Horizontal" HorizontalOptions="CenterAndExpand" Padding="0,25,0,0"> <Label Text="{Binding DayNumber}" HorizontalTextAlignment="Center" FontSize="48" TextColor="White" FontAttributes="Bold"></Label> </StackLayout> <StackLayout Orientation="Horizontal" HorizontalOptions="CenterAndExpand"> <Label Text="{Binding DayWord}" HorizontalTextAlignment="Center" FontSize="16" TextColor="White"></Label> </StackLayout> <StackLayout Orientation="Horizontal" HorizontalOptions="CenterAndExpand"> <Label Text="{Binding DateMonthYear}" HorizontalTextAlignment="Center" FontSize="10" TextColor="White"></Label> </StackLayout> </StackLayout> <StackLayout Grid.Column="1" BackgroundColor="#fcfcfc"> <StackLayout Orientation="Horizontal" HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand" Padding="5,0,5,0"> <Label Text="{Binding Title}" LineBreakMode="WordWrap" HorizontalTextAlignment="Center" TextColor="#505259"></Label> </StackLayout> </StackLayout> </Grid> </Frame> </telerikListView:ListViewTemplateCell.View> </telerikListView:ListViewTemplateCell> </DataTemplate> </telerikDataControls:RadListView.ItemTemplate> <telerikDataControls:RadListView.Commands> <telerikListViewCommands:ListViewUserCommand Id="ItemTap" Command="{Binding AgendaDetailCommand}" /> <telerikListViewCommands:ListViewUserCommand Id="LoadOnDemand" Command="{Binding AgendaLoadOnDemandCommand}" /> </telerikDataControls:RadListView.Commands> <telerikDataControls:RadListView.LayoutDefinition> <telerikListView:ListViewGridLayout ItemLength="150" SpanCount="2" HorizontalItemSpacing="30" VerticalItemSpacing="30" /> </telerikDataControls:RadListView.LayoutDefinition> </telerikDataControls:RadListView> </Grid>