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

21 строка
1010 B
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"
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>