Fix NVDA screen reader incorrect list count for File Explorer TreeView #2241
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem
NVDA screen reader was announcing incorrect list counts for the File Explorer TreeView, saying "1 of 9" instead of "1 of 6" when there were only 6 visible files. This caused confusion for screen reader users who received misleading information about the actual number of navigable items.
Root Cause
The TreeView accessibility system was counting all items in the data source, including:
Solution
Implemented targeted accessibility improvements with minimal code changes:
1. Enhanced System File Filtering (
PerfViewData.cs
)2. Accessibility Exclusions (
MainWindow.xaml
)Used WPF
AutomationProperties.AccessibilityView="Raw"
to exclude non-user items:3. Improved Screen Reader Experience
Testing
Added comprehensive unit tests (
AccessibilityTests.cs
) to verify:Impact
Screen readers will now announce accurate file counts (e.g., "1 of 6" instead of "1 of 9") while maintaining all existing navigation functionality for both sighted users and screen reader users.
Fixes #2240.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.