blob: 1f344bc0e859cf8649e6aebd041acfb44cdf3397 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0" encoding="UTF-8"?>
<local:TestContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Xamarin.Forms.Controls"
x:Class="Xamarin.Forms.Controls.Issues.Issue2777">
<local:TestContentPage.Content>
<ListView x:Name="itemListView" IsGroupingEnabled="true" ItemTapped="OnItemTapped">
<ListView.GroupHeaderTemplate>
<DataTemplate>
<ViewCell>
<Label Text="{Binding LongTitle}" TextColor="Blue" />
</ViewCell>
</DataTemplate>
</ListView.GroupHeaderTemplate>
<ListView.ItemTemplate>
<DataTemplate>
<TextCell Text="{Binding Name}">
</TextCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</local:TestContentPage.Content>
</local:TestContentPage>
|