From fdbfcd6570ac7cd0dc5a61acd2911431084e6cda Mon Sep 17 00:00:00 2001 From: "Aleksandar Marinov (INFRAGISTICS INC)" Date: Mon, 13 Jul 2026 15:29:15 +0200 Subject: [PATCH] Fix Narrator announcing record fields on ListView items The Basic ListView item template shows only Name, but the item's accessible name fell back to the Person record's ToString(), which dumps every field (including Company). Narrator therefore announced extra, unnecessary information beyond the visible Name. Set AutomationProperties.Name to the bound Name via ItemContainerStyle so the item's accessible name matches the visible content (MAS 1.3.1). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../WPFGallery/Views/Collections/ListViewPage.xaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Sample Applications/WPFGallery/Views/Collections/ListViewPage.xaml b/Sample Applications/WPFGallery/Views/Collections/ListViewPage.xaml index bc540d8d8..8786e584c 100644 --- a/Sample Applications/WPFGallery/Views/Collections/ListViewPage.xaml +++ b/Sample Applications/WPFGallery/Views/Collections/ListViewPage.xaml @@ -49,6 +49,11 @@ ItemsSource="{Binding ViewModel.BasicListViewItems, Mode=TwoWay}" SelectedIndex="2" SelectionMode="Single"> + + +