using System; using System.Collections.Generic; using Xamarin.Forms; namespace SampleApp.Views { public partial class Functionality6 : ContentPage { public Functionality6() { InitializeComponent(); AutomationProperties.SetIsInAccessibleTree(forkImage, true); } void EntryName_TextChanged(object sender, TextChangedEventArgs e) { AutomationProperties.SetName(forkImage, e.NewTextValue); } void EntryHelpText_TextChanged(object sender, TextChangedEventArgs e) { AutomationProperties.SetHelpText(forkImage, e.NewTextValue); } } }