maui-linux/Xamarin.Forms.Xaml.UnitTests/GenericsTests.xaml

28 строки
1.2 KiB
XML

<?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"
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"/>
<scg:List x:TypeArguments="scg:KeyValuePair(sys:String,sys:String)" x:Key="genericsquaredlist"/>
<scg:List x:TypeArguments="x:String" x:Key="stringList"/>
<scg:List x:TypeArguments="scg:KeyValuePair(x:String,x:String)" x:Key="TestList" x:Name="TestListMember" >
<scg:KeyValuePair x:TypeArguments="x:String,x:String" >
<x:Arguments>
<x:String>TheKey</x:String>
<x:String>TheValue</x:String>
</x:Arguments>
</scg:KeyValuePair>
</scg:List>
</ResourceDictionary>
</ContentPage.Resources>
</ContentPage>