usingSystem;usingSystem.Collections.Generic;usingXamarin.Forms;namespaceSampleApp.Views{publicpartialclassFunctionality8:ContentPage{publicFunctionality8(){InitializeComponent();AutomationProperties.SetIsInAccessibleTree(label,true);AutomationProperties.SetIsInAccessibleTree(entry,true);// this only works on AndroidAutomationProperties.SetLabeledBy(entry,label);//iOSif(Device.RuntimePlatform==Device.iOS){AutomationProperties.SetName(entry,label.Text);}}}}