Hi,
While a bug report would be a better category, this is marked as a feature request due to the background information provided below.
Background
As part of modernizing inbox apps (programs shipping with Windows by default), Notepad was updated on Windows 11 to adopt the new UI changes. In a recent blog post, Microsoft highlighted changes introduced in Notepad.
The new Notepad was introduced to everyone in February 2022. This version (11.2112) did introduce redesigned UI elements and use of rich edit control for document content. However, it had issues, notably screen readers such as NVDA repeating content from the line above when there was a line of text followed by a blank line, then end of the document. This, together with text repetition problem when Enter key is pressed, was resolved in Notepad 11.2203 released in late April.
One issue is not resolved: status bar reading. In Windows 10 Notepad, one can perform status bar command (NVDA+End in desktop layout, NVDA+Shift+End in laptop layout) and status bar text will be announced if enabled from View menu. This is not the case in Windows 11.
Is your feature request related to a problem? Please describe.
Due to UI redesign, NVDA cannot obtain status bar information in Windows 11 Notepad. Further, status bar is located on different UIA tree location (fifth child of the foreground window in 11.2112, eighth child in 11.2203).
Describe the solution you'd like
Implement status bar retrieval method in the new Notepad app module. Due to the fact that newer Notepad includes bug fixes and is generally available to everyone, tree traversal route will folow that of 11.2203 (that is, minimum supported version will be 11.2203 released in April 2022).
Describe alternatives you've considered
Two alternatives:
- Leave things as is. This is because Notepad app module is the example app module used in dev docs. Introducing a new Notepad module will require looking for a new simple app to provide examples for developers getting started with app modules. Alternatively, continue using Notepad with a note that for folks using Windows 11, a different app should be used to test app module basics.
- Improve api.getStatusBar function to take situations like Windows 11 Notepad into account when fetching status bars.
Additional context
A working example is included in Windows App Essentials add-on which will be the basis of a follow-up pull request.
Thanks.
Hi,
While a bug report would be a better category, this is marked as a feature request due to the background information provided below.
Background
As part of modernizing inbox apps (programs shipping with Windows by default), Notepad was updated on Windows 11 to adopt the new UI changes. In a recent blog post, Microsoft highlighted changes introduced in Notepad.
The new Notepad was introduced to everyone in February 2022. This version (11.2112) did introduce redesigned UI elements and use of rich edit control for document content. However, it had issues, notably screen readers such as NVDA repeating content from the line above when there was a line of text followed by a blank line, then end of the document. This, together with text repetition problem when Enter key is pressed, was resolved in Notepad 11.2203 released in late April.
One issue is not resolved: status bar reading. In Windows 10 Notepad, one can perform status bar command (NVDA+End in desktop layout, NVDA+Shift+End in laptop layout) and status bar text will be announced if enabled from View menu. This is not the case in Windows 11.
Is your feature request related to a problem? Please describe.
Due to UI redesign, NVDA cannot obtain status bar information in Windows 11 Notepad. Further, status bar is located on different UIA tree location (fifth child of the foreground window in 11.2112, eighth child in 11.2203).
Describe the solution you'd like
Implement status bar retrieval method in the new Notepad app module. Due to the fact that newer Notepad includes bug fixes and is generally available to everyone, tree traversal route will folow that of 11.2203 (that is, minimum supported version will be 11.2203 released in April 2022).
Describe alternatives you've considered
Two alternatives:
Additional context
A working example is included in Windows App Essentials add-on which will be the basis of a follow-up pull request.
Thanks.