You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Did it work in any of the earlier releases of .NET Core or .NET 5+?
It works in .NET 8/9, regression from .NET 10
Issue description
When a PropertyGrid is present on a WinForms form, keyboard Tab navigation works correctly during the first traversal but becomes inconsistent in subsequent cycles. Some controls are skipped, indicating a regression in focus handling behavior introduced by PropertyGrid because of removing PropertyGrid without this issue.
First Tab cycle: all controls are reachable ✔
Second and subsequent cycles:
Some controls (e.g., ComboBox, one Button) are skipped ❌
Focus repeatedly lands on PropertyGrid and a subset of controls ❌
PropertyGridIssue.mp4
Steps to reproduce
Create a WinForms (.NET 11 or 10) application
Add several controls to the form:
Two Button controls
One ComboBox
One PropertyGrid
Ensure all controls have TabStop = true and proper TabIndex order
.NET version
11.0.100-preview.3.26175.115
Did it work in .NET Framework?
Yes
Did it work in any of the earlier releases of .NET Core or .NET 5+?
It works in .NET 8/9, regression from .NET 10
Issue description
When a
PropertyGridis present on a WinForms form, keyboard Tab navigation works correctly during the first traversal but becomes inconsistent in subsequent cycles. Some controls are skipped, indicating a regression in focus handling behavior introduced by PropertyGrid because of removingPropertyGridwithout this issue.First Tab cycle: all controls are reachable ✔
Second and subsequent cycles:
PropertyGridIssue.mp4
Steps to reproduce