[Templates] Remove redundant SemanticProperties.Description attribute#33621
Merged
PureWeen merged 1 commit intodotnet:inflight/currentfrom Jan 20, 2026
Merged
Conversation
Deleted the unnecessary SemanticProperties.Description attribute from the CollectionView in ProjectDetailPage.xaml to clean up the XAML and avoid redundancy.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes the redundant SemanticProperties.Description="Tags Collection" attribute from a CollectionView in the MAUI mobile template to address iOS VoiceOver accessibility issues. The change synchronizes with fixes already applied in the maui-samples repository.
Changes:
- Removed
SemanticProperties.Descriptionattribute from Tags CollectionView element to prevent VoiceOver from treating the entire collection as a single accessibility element, which would hide individual tag items from the accessibility tree
This was referenced Jan 20, 2026
Open
github-actions bot
pushed a commit
that referenced
this pull request
Jan 21, 2026
…#33621) Syncing with the maui-samples repo: dotnet/maui-samples#724 Accessibility note (iOS / VoiceOver) While investigating this issue, it’s worth noting that setting IsAccessibilityElement = true on the UIViewControllerWrapperView causes VoiceOver to treat the wrapper as a single accessibility element. As a result, all child elements (including individual cells) are no longer exposed to the accessibility tree. This is expected UIKit behavior: An accessibility element replaces its children in the VoiceOver hierarchy. Therefore, I've removed the SemanticProperties.Description="Tags Collection" Fixes #30891 Fixes #30749
github-actions bot
pushed a commit
that referenced
this pull request
Jan 23, 2026
…#33621) Syncing with the maui-samples repo: dotnet/maui-samples#724 Accessibility note (iOS / VoiceOver) While investigating this issue, it’s worth noting that setting IsAccessibilityElement = true on the UIViewControllerWrapperView causes VoiceOver to treat the wrapper as a single accessibility element. As a result, all child elements (including individual cells) are no longer exposed to the accessibility tree. This is expected UIKit behavior: An accessibility element replaces its children in the VoiceOver hierarchy. Therefore, I've removed the SemanticProperties.Description="Tags Collection" Fixes #30891 Fixes #30749
PureWeen
pushed a commit
that referenced
this pull request
Jan 27, 2026
…#33621) Syncing with the maui-samples repo: dotnet/maui-samples#724 Accessibility note (iOS / VoiceOver) While investigating this issue, it’s worth noting that setting IsAccessibilityElement = true on the UIViewControllerWrapperView causes VoiceOver to treat the wrapper as a single accessibility element. As a result, all child elements (including individual cells) are no longer exposed to the accessibility tree. This is expected UIKit behavior: An accessibility element replaces its children in the VoiceOver hierarchy. Therefore, I've removed the SemanticProperties.Description="Tags Collection" Fixes #30891 Fixes #30749
PureWeen
pushed a commit
that referenced
this pull request
Jan 29, 2026
…#33621) Syncing with the maui-samples repo: dotnet/maui-samples#724 Accessibility note (iOS / VoiceOver) While investigating this issue, it’s worth noting that setting IsAccessibilityElement = true on the UIViewControllerWrapperView causes VoiceOver to treat the wrapper as a single accessibility element. As a result, all child elements (including individual cells) are no longer exposed to the accessibility tree. This is expected UIKit behavior: An accessibility element replaces its children in the VoiceOver hierarchy. Therefore, I've removed the SemanticProperties.Description="Tags Collection" Fixes #30891 Fixes #30749
PureWeen
pushed a commit
that referenced
this pull request
Feb 2, 2026
…#33621) Syncing with the maui-samples repo: dotnet/maui-samples#724 Accessibility note (iOS / VoiceOver) While investigating this issue, it’s worth noting that setting IsAccessibilityElement = true on the UIViewControllerWrapperView causes VoiceOver to treat the wrapper as a single accessibility element. As a result, all child elements (including individual cells) are no longer exposed to the accessibility tree. This is expected UIKit behavior: An accessibility element replaces its children in the VoiceOver hierarchy. Therefore, I've removed the SemanticProperties.Description="Tags Collection" Fixes #30891 Fixes #30749
github-actions bot
pushed a commit
that referenced
this pull request
Feb 4, 2026
…#33621) Syncing with the maui-samples repo: dotnet/maui-samples#724 Accessibility note (iOS / VoiceOver) While investigating this issue, it’s worth noting that setting IsAccessibilityElement = true on the UIViewControllerWrapperView causes VoiceOver to treat the wrapper as a single accessibility element. As a result, all child elements (including individual cells) are no longer exposed to the accessibility tree. This is expected UIKit behavior: An accessibility element replaces its children in the VoiceOver hierarchy. Therefore, I've removed the SemanticProperties.Description="Tags Collection" Fixes #30891 Fixes #30749
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Syncing with the maui-samples repo: dotnet/maui-samples#724
Accessibility note (iOS / VoiceOver)
While investigating this issue, it’s worth noting that setting IsAccessibilityElement = true on the UIViewControllerWrapperView causes VoiceOver to treat the wrapper as a single accessibility element. As a result, all child elements (including individual cells) are no longer exposed to the accessibility tree.
This is expected UIKit behavior:
An accessibility element replaces its children in the VoiceOver hierarchy.
Therefore, I've removed the SemanticProperties.Description="Tags Collection"
Fixes #30891
Fixes #30749