summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz36422.xaml
blob: 4a467eabde17731c0ac16c5a4a9045a2ba02ab6c (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:local="clr-namespace:Xamarin.Forms.Xaml.UnitTests"
			 x:Class="Xamarin.Forms.Xaml.UnitTests.Bz36422">
	<local:Bz36422Control x:Name="control">
		<local:Bz36422Control.Views>
			<x:Array Type="{x:Type ContentView}">
				<ContentView>
					<Label Text="Page 1"/>
				</ContentView>
				<ContentView>
					<Label Text="Page 2"/>
				</ContentView>
				<ContentView>
					<Label Text="Page 3"/>
				</ContentView>
			</x:Array>
		</local:Bz36422Control.Views>
	</local:Bz36422Control>
</ContentPage>