summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/AutomationProperties.xaml
blob: 6e035f0acfd8e65f268c72f8873e602f0985cd90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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.AutomationProperties">

	<StackLayout>
		<Label x:Name="label" Text="Your Name" />
		<Entry x:Name="entry"
			AutomationProperties.Name="Name"
			AutomationProperties.HelpText="Sets your name"
			AutomationProperties.IsInAccessibleTree="true"
			AutomationProperties.LabeledBy="{x:Reference label}"
		 />
	</StackLayout>

</ContentPage>