summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/TypeExtension.xaml
blob: bd7dec96a4b93106822e1595ec6319b972829319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
		xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
		xmlns:local="clr-namespace:Xamarin.Forms.Xaml.UnitTests"
		xmlns:localshort="clr-namespace:Xamarin.Forms.Xaml"
		x:Class="Xamarin.Forms.Xaml.UnitTests.TypeExtension">
	<StackLayout>
		<ListView x:Name="listview">
			<ListView.ItemTemplate>
				<DataTemplate>
					<ViewCell>
						<Button Command="{local:Navigate Operation=Forward, Type={x:Type Grid}}" />
					</ViewCell>
				</DataTemplate>
			</ListView.ItemTemplate>
		</ListView>
		<Button x:Name="button0" CommandParameter="{x:Type localshort:UnitTests.TypeExtension}" />
	</StackLayout>
</ContentPage>