react-native-windows icon indicating copy to clipboard operation
react-native-windows copied to clipboard

Accessibility and UIA Support

Open sharath2727 opened this issue 2 months ago • 1 comments

When we hover on the Xaml Button hosted in the childsitelink the UIA asks which element is under the screen point and calls intoCompositionRootAutomationProvider::ElementProviderFromPoint -----> which calls into RootComponentView::UiaProviderFromPoint ----> RootComponentView::Hittest and then it tries to find the tag for the ContentIslandComponentView.

As ViewComponentView is the base class for ContentIslandComponentView it should correctly return the tag.

Once the above is implemented ensure Accessibility props are read in Accessibility Insights.

Guidance: Any 3P Xaml Control when registering with the app should not inherit from ViewComponentView and should inherit from ComponentView.

sharath2727 avatar Nov 06 '25 14:11 sharath2727

https://github.com/microsoft/react-native-windows/pull/15466

protikbiswas100 avatar Dec 11 '25 05:12 protikbiswas100