usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Reflection;usingSampleApp.CustomRenderers;usingXamarin.Forms;namespaceSampleApp.Views{[DesignTimeVisible(false)]publicpartialclassFunctionality4:ContentPage{publicstaticLabelmyLabel=newLabel{Text="Select the Bell Image with the accessibility focus",HorizontalOptions=LayoutOptions.CenterAndExpand};publicFunctionality4(){InitializeComponent();// immagine campanelloCustomImageBellImage=newCustomImage{Source=ImageSource.FromResource("SampleApp.images.bell.png",typeof(Functionality4).GetTypeInfo().Assembly)};AutomationProperties.SetIsInAccessibleTree(myLabel,true);AutomationProperties.SetIsInAccessibleTree(BellImage,true);AutomationProperties.SetName(BellImage,"Bell Image");background.Children.Add(myLabel);background.Children.Add(BellImage);}}}