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+?
No, repro in previous .NET versions
Issue description
ToolStripDropDown scrolling behavior issue when hidden items exist in the dropdown.
Given four dropdown items:
A
B
C
D
with: B.Visible = false;
At runtime, the dropdown can scroll downward correctly, but upward scrolling using the top scroll button stops at C and cannot continue scrolling back to A, which is the visible item immediately before the hidden item B.
ScrollingIssue.mp4
Steps to reproduce
Create a ToolStripDropDownButton (or similar dropdown control).
Add four dropdown items:
A
B
C
D
Set: B.Visible = false;
Configure the dropdown height so scrolling buttons appear.
.NET version
.NET 11 SDK build: 11.0.100-preview.5.26256.117
Did it work in .NET Framework?
No
Did it work in any of the earlier releases of .NET Core or .NET 5+?
No, repro in previous .NET versions
Issue description
ToolStripDropDown scrolling behavior issue when hidden items exist in the dropdown.
Given four dropdown items:
with:
B.Visible = false;At runtime, the dropdown can scroll downward correctly, but upward scrolling using the top scroll button stops at
Cand cannot continue scrolling back toA, which is the visible item immediately before the hidden itemB.ScrollingIssue.mp4
Steps to reproduce
B.Visible = false;