16 строки
557 B
XML
16 строки
557 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"
|
|
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> |