Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support table navigation for WPF list item DataItem objects #12928

Merged
merged 4 commits into from
Oct 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions source/NVDAObjects/UIA/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -900,6 +900,13 @@ def findOverlayClasses(self,clsList):
clsList.append(PlaceholderNetUITWMenuItem)
elif UIAClassName=="WpfTextView":
clsList.append(WpfTextView)
elif (
UIAClassName == "ListViewItem"
and self.UIAElement.cachedFrameworkID == "WPF"
and self.role == controlTypes.Role.DATAITEM
):
from NVDAObjects.behaviors import RowWithFakeNavigation
clsList.append(RowWithFakeNavigation)
elif UIAClassName=="NetUIDropdownAnchor":
clsList.append(NetUIDropdownAnchor)
elif self.windowClassName == "EXCEL6" and self.role == controlTypes.Role.PANE:
Expand Down
6 changes: 4 additions & 2 deletions user_docs/en/changes.t2t
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ What's New in NVDA
== New Features ==
- Adds an input gesture for toggling settings for reporting the style of cell borders. (#10408)
- Support for the new HID Braille specification which aims to standardise support for Braille Displays. (#12523)
- Devices that support this specification will be auto detected by NVDA.
- For technical details on NVDA's implementation of this specification, see https://github.com/nvaccess/nvda/blob/master/devDocs/hidBrailleTechnicalNotes.md
- Devices that support this specification will be auto detected by NVDA.
- For technical details on NVDA's implementation of this specification, see https://github.com/nvaccess/nvda/blob/master/devDocs/hidBrailleTechnicalNotes.md
-
- Add support for the VisioBraille Vario 4 Braille Device. (#12607)
- Error notifications can be enabled (advanced settings) when using any version of NVDA. (#12672)
- In Windows 10 and later, NVDA will announce the suggestion count when entering search terms in apps such as Settings and Microsoft Store. (#7330, #12758, #12790)
- Table navigation is now supported in grid controls created using the Out-GridView cmdlet in PowerShell. (#12928)
-


Expand Down