Thanks for your reply. I have implemented the lines but they don't appear at the bottom of the row. They seem to cut the row in half.
<
ListView
x:Name
=
"lstInbox"
>
<
telerik:RadListView.ItemStyle
>
<
telerikListView:ListViewItemStyle
BorderWidth
=
"2"
BorderLocation
=
"Bottom"
BorderColor
=
"#dfdfdf"
BackgroundColor
=
"Transparent"
/>
</
telerik:RadListView.ItemStyle
>
<
telerik:RadListView.SelectedItemStyle
>
<
telerikListView:ListViewItemStyle
BorderWidth
=
"2"
BorderLocation
=
"Bottom"
BorderColor
=
"#dfdfdf"
BackgroundColor
=
"#dfdfdf"
/>
</
telerik:RadListView.SelectedItemStyle
>
<
telerik:RadListView.PressedItemStyle
>
<
telerikListView:ListViewItemStyle
BorderWidth
=
"2"
BorderLocation
=
"Bottom"
BorderColor
=
"#dfdfdf"
BackgroundColor
=
"#dfdfdf"
/>
</
telerik:RadListView.PressedItemStyle
>
<
telerik:RadListView.ItemTemplate
>
<
DataTemplate
>
<
telerikListView:ListViewTemplateCell
>
<
telerikListView:ListViewTemplateCell.View
>
<
Grid
ColumnSpacing
=
"0"
>
<
Grid.ColumnDefinitions
>
<
ColumnDefinition
Width
=
"0"
/>
<
ColumnDefinition
Width
=
"13*"
/>
<
ColumnDefinition
Width
=
"7*"
/>
</
Grid.ColumnDefinitions
>
<
Grid.RowDefinitions
>
<
RowDefinition
Height
=
"Auto"
/>
<
RowDefinition
Height
=
"Auto"
/>
</
Grid.RowDefinitions
>
<
ContentView
Grid.Row
=
"0"
Grid.Column
=
"0"
Grid.RowSpan
=
"2"
VerticalOptions
=
"FillAndExpand"
HorizontalOptions
=
"FillAndExpand"
BackgroundColor
=
"{Binding TypeColor}"
>
</
ContentView
>
<
ContentView
Grid.Row
=
"0"
Grid.Column
=
"1"
Padding
=
"6,6,6,0"
HorizontalOptions
=
"Fill"
VerticalOptions
=
"Center"
>
<
Label
Text
=
"{Binding Title}"
TextColor
=
"{Binding Source={x:Static resources:ResourcesManager.ColorResources}, Path=InboxItemPageTextColor}"
FontSize
=
"{Binding Source={x:Static resources:ResourcesManager.SizeResources}, Path=InboxPageTitleTextSize}"
FontAttributes
=
"Bold"
LineBreakMode
=
"TailTruncation"
/>
</
ContentView
>
<
ContentView
Grid.Row
=
"0"
Grid.Column
=
"2"
Padding
=
"6,6,6,0"
HorizontalOptions
=
"Fill"
VerticalOptions
=
"Center"
>
<
Label
XAlign
=
"End"
YAlign
=
"Center"
Text
=
"{Binding MessageDate}"
TextColor
=
"{Binding Source={x:Static resources:ResourcesManager.ColorResources}, Path=InboxItemPageDateTextColor}"
FontSize
=
"{Binding Source={x:Static resources:ResourcesManager.SizeResources}, Path=InboxPageDateTextSize}"
/>
</
ContentView
>
<
ContentView
Grid.Row
=
"1"
Grid.Column
=
"1"
Grid.ColumnSpan
=
"2"
VerticalOptions
=
"Fill"
HorizontalOptions
=
"Fill"
Padding
=
"6,0,6,6"
>
<
controls:ExtendedLabel
Text
=
"{Binding Message}"
TextColor
=
"{Binding Source={x:Static resources:ResourcesManager.ColorResources}, Path=InboxItemPageTextColor}"
FontSize
=
"{Binding Source={x:Static resources:ResourcesManager.SizeResources}, Path=InboxPageDetailTextSize}"
NumberOfLines
=
"2"
/>
</
ContentView
>
</
Grid
>
</
telerikListView:ListViewTemplateCell.View
>
</
telerikListView:ListViewTemplateCell
>
</
DataTemplate
>
</
telerik:RadListView.ItemTemplate
>
</
controls:AgDNA_ListView
>