Fix ComboBox dropdown height after clearing or removing all items#14632
Fix ComboBox dropdown height after clearing or removing all items#14632JayashreeSF3546 wants to merge 7 commits into
Conversation
…be reset default height after clear the combobox items.
|
@JayashreeSF3546 please read the following Contributor License Agreement(CLA). If you agree with the CLA, please reply with the following information.
Contributor License AgreementContribution License AgreementThis Contribution License Agreement ( “Agreement” ) is agreed to by the party signing below ( “You” ), 1. Definitions. “Code” means the computer software code, whether in human-readable or machine-executable form, “Project” means any of the projects owned or managed by .NET Foundation and offered under a license “Submit” is the act of uploading, submitting, transmitting, or distributing code or other content to any “Submission” means the Code and any other copyrightable material Submitted by You, including any 2. Your Submission. You must agree to the terms of this Agreement before making a Submission to any 3. Originality of Work. You represent that each of Your Submissions is entirely Your 4. Your Employer. References to “employer” in this Agreement include Your employer or anyone else 5. Licenses. a. Copyright License. You grant .NET Foundation, and those who receive the Submission directly b. Patent License. You grant .NET Foundation, and those who receive the Submission directly or c. Other Rights Reserved. Each party reserves all rights not expressly granted in this Agreement. 6. Representations and Warranties. You represent that You are legally entitled to grant the above 7. Notice to .NET Foundation. You agree to notify .NET Foundation in writing of any facts or 8. Information about Submissions. You agree that contributions to Projects and information about 9. Governing Law/Jurisdiction. This Agreement is governed by the laws of the State of Washington, and 10. Entire Agreement/Assignment. This Agreement is the entire agreement between the parties, and .NET Foundation dedicates this Contribution License Agreement to the public domain according to the Creative Commons CC0 1. |
There was a problem hiding this comment.
Pull request overview
This PR addresses a long-standing WinForms ComboBox issue where the dropdown LISTBOX can keep using a stale cached height after all items are cleared/removed, by enforcing the managed dropdown height during native sizing.
Changes:
- Refactors dropdown height computation into a reusable helper (
GetCalculatedDropDownHeight). - Intercepts
WM_WINDOWPOSCHANGINGfor the dropdown LISTBOX native window and rewritesWINDOWPOS.cyto the managed-calculated height when sizing occurs.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.cs | Extracts dropdown height calculation into GetCalculatedDropDownHeight and reuses it from UpdateDropDownHeight. |
| src/System.Windows.Forms/System/Windows/Forms/Controls/ComboBox/ComboBox.ComboBoxChildNativeWindow.cs | Handles WM_WINDOWPOSCHANGING for the dropdown LISTBOX to enforce managed height before the OS commits the size. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| case PInvokeCore.WM_WINDOWPOSCHANGING: | ||
| if (_childWindowType == ChildWindowType.DropDownList) | ||
| { | ||
| WmWindowPosChanging(ref m); | ||
| DefWndProc(ref m); | ||
| } | ||
| else | ||
| { | ||
| _owner.ChildWndProc(ref m); | ||
| } | ||
|
|
||
| break; |
| if (pos is not null && (pos->flags & SET_WINDOW_POS_FLAGS.SWP_NOSIZE) == 0) | ||
| { | ||
| int height = _owner.GetCalculatedDropDownHeight(); | ||
| if (pos->cy != height) | ||
| { | ||
| pos->cy = height; | ||
| } |
There was a problem hiding this comment.
-
The
WM_WINDOWPOSCHANGINGhandler unconditionally overrides the dropdown height for every position-change event (as long asSWP_NOSIZEis not set):if (pos->cy != height) { pos->cy = height; }This means if the OS intentionally adjusts the dropdown height for legitimate reasons (DPI changes, integral height adjustments, display-edge clamping, or monitor work-area boundaries), the fix will forcefully override it. A safer approach would be to limit the intercept to specific scenarios — e.g., only when the dropdown is initially opening or when items have changed.
-
If the dropdown is near the bottom of the screen, the OS may reduce the dropdown height to fit within the work area. The current fix would override that clamped value back to the full calculated height, potentially causing the dropdown to extend off-screen. The fix should respect
pos->cywhen it's smaller than the calculated height if the dropdown position is near a screen edge.
Fixes #339
Proposed changes
ComboBoxChildNativeWindowhandling for the dropdown list window.WM_WINDOWPOSCHANGINGfor the native dropdown LISTBOX and updateWINDOWPOS.cywith the managed calculated dropdown height.Items.Count/DropDownHeighteven afterItems.Clear()or removing the last item.Customer Impact
Regression?
Risk
WM_WINDOWPOSCHANGING.IntegralHeightbehavior is preserved while ensuring the final committed dropdown height matches WinForms calculated height.Screenshots
Before
After
Test methodology
WM_WINDOWPOSCHANGINGupdatesWINDOWPOS.cyto the managed calculated dropdown height.Items.Clear().SWP_NOSIZEis set.Accessibility testing
Test environment(s)
Microsoft Reviewers: Open in CodeFlow