summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/ImplicitConversions.xaml
blob: 38d20e3ef7235a2ad6d9ae043b791b770c51d37c (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"
		x:Class="Xamarin.Forms.Xaml.UnitTests.ImplicitConversions">
	<StackLayout>
		<DatePicker x:Name="datetime0" Date="2015-01-16"/>
		<DatePicker x:Name="datetime1">
			<DatePicker.Date>2015-01-16</DatePicker.Date>
		</DatePicker>
		<Label x:Name="label0" Text="foobar"/>
		<Label x:Name="label1">
			<Label.Text>
				foobar
			</Label.Text>
		</Label>
		<Label x:Name="label2">
			foobar
		</Label>
	</StackLayout>
</ContentPage>