summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz24910.xaml
blob: 6031212cfe6eeb909576e1c0e74407e899202268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
			 xmlns:local="clr-namespace:Xamarin.Forms.Xaml.UnitTests"
			 xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
			 x:Class="Xamarin.Forms.Xaml.UnitTests.Bz24910" >
	<StackLayout>
		<local:Bz24910Control x:Name="control0" Text="CustomButton" NullableInt="1" NullableDouble="2.2" />
		<local:Bz24910Control x:Name="control1" Text="CustomButton" NullableDouble="2"  />
		<local:Bz24910Control x:Name="control2" Text="CustomButton" NullableInt="{x:Null}" />
		<local:Bz24910Control x:Name="control3" Text="CustomButton" NullableInt="{Binding .}" />
		<Label x:Name="control4" local:Bz24910Control.AttachedNullableInt="3" />
		<local:Bz24910Control x:Name="control5" Text="CustomButton" NullableIntProp="5" />
	</StackLayout>
</ContentPage>