summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz27968.xaml
blob: 98121ab3f0c96b60d1b246ead0da618080ede047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<local:Bz27968Page xmlns="http://xamarin.com/schemas/2014/forms"
			 xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
			 xmlns:local="clr-namespace:Xamarin.Forms.Xaml.UnitTests"
			 x:Class="Xamarin.Forms.Xaml.UnitTests.Bz27968">
	<ContentPage.Resources>
		<ResourceDictionary>
			<DataTemplate x:Key="template">
				<ViewCell />
			</DataTemplate>
			<ListView x:Key="listView" ItemTemplate="{StaticResource template}" />
		</ResourceDictionary>
	</ContentPage.Resources>
</local:Bz27968Page>