summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/GenericsTests.xaml
blob: da224282eac80abaeed3ba69e7d8fc9ea6c28d2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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:sys="clr-namespace:System;assembly=mscorlib"
			 xmlns:scg="clr-namespace:System.Collections.Generic;assembly=mscorlib"
			 xmlns:scgs="clr-namespace:System.Collections.Generic;assembly=System"
			 x:Class="Xamarin.Forms.Xaml.UnitTests.GenericsTests">
	<ContentPage.Resources>
		<ResourceDictionary>
			<scg:List x:TypeArguments="Button" x:Key="genericButtonList">
				<Button />
				<Button />
			</scg:List>
			<scg:List x:TypeArguments="Button" x:Key="genericButtonList1" x:Name="myList"/>
			<scg:List x:TypeArguments="sys:String" x:Key="list"/>
			<scg:Dictionary x:TypeArguments="sys:String, sys:String"  x:Key="dict"/>
			<scgs:Queue x:TypeArguments="scg:KeyValuePair(sys:String,sys:String)" x:Key="queue"/>
			<scg:List x:TypeArguments="x:String" x:Key="stringList"/>
		</ResourceDictionary>
	</ContentPage.Resources>
</ContentPage>