usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Reflection;usingXamarin.Forms;namespaceSampleApp.Views{[DesignTimeVisible(false)]publicpartialclassFunctionality1:ContentPage{publicFunctionality1(){InitializeComponent();AutomationProperties.SetIsInAccessibleTree(forkImage,true);AutomationProperties.SetName(forkImage,"fork image");}voidOnToggled(objectsender,ToggledEventArgse){// Perform an action after examining e.Valueif(e.Value){AutomationProperties.SetIsInAccessibleTree(forkImage,true);}else{AutomationProperties.SetIsInAccessibleTree(forkImage,false);}}}}