summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/TypeExtension.xaml
blob: 738fac60362b71427c577b24232e3156e6195733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="UTF-8"?>
<ListView 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.TypeExtension">
	<ListView.ItemTemplate>
		<DataTemplate>
			<ViewCell>
				<Button Command="{local:Navigate Operation=Forward, Type={x:Type Grid}}" />
			</ViewCell>
		</DataTemplate>
	</ListView.ItemTemplate>
</ListView>