Skip to content

Commit cd5dd1c

Browse files
authored
Revert #4808 fix. Due to #12591 and investigations. (#12729)
Fix #12591. This reverts #4808 fix commit from #11358 PR. The disposal of DisplayedItems after removal has already been implemented in DoLayoutIfHandleCreated but only if handle was created. So we have a leak only if handle is destroyed (#4808 case) and we didn't take this into account.
1 parent 696f082 commit cd5dd1c

File tree

3 files changed

+2
-40
lines changed

3 files changed

+2
-40
lines changed

src/System.Windows.Forms/src/System/Windows/Forms/Controls/ToolStrips/ToolStrip.cs

+1-8
Original file line numberDiff line numberDiff line change
@@ -4680,16 +4680,9 @@ internal void OnItemAddedInternal(ToolStripItem item)
46804680
}
46814681
}
46824682

4683-
internal void OnItemRemovedInternal(ToolStripItem item, ToolStripItemCollection itemCollection)
4683+
internal void OnItemRemovedInternal(ToolStripItem item)
46844684
{
46854685
KeyboardToolTipStateMachine.Instance.Unhook(item, ToolTip);
4686-
if (itemCollection == _toolStripItemCollection)
4687-
{
4688-
// To prevent memory leaks when item removed from main collection,
4689-
// we need to remove it from _displayedItems and _overflowItems too.
4690-
_displayedItems?.Remove(item);
4691-
_overflowItems?.Remove(item);
4692-
}
46934686
}
46944687

46954688
internal override bool AllowsChildrenToShowToolTips()

src/System.Windows.Forms/src/System/Windows/Forms/Controls/ToolStrips/ToolStripItemCollection.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ private void OnAfterRemove(ToolStripItem item)
391391

392392
if (_owner is not null)
393393
{
394-
_owner.OnItemRemovedInternal(item, this);
394+
_owner.OnItemRemovedInternal(item);
395395

396396
if (!_owner.IsDisposingItems)
397397
{

src/System.Windows.Forms/tests/UnitTests/System/Windows/Forms/ToolStripTests.cs

-31
Original file line numberDiff line numberDiff line change
@@ -7337,37 +7337,6 @@ void TimerStartAndItemDispose()
73377337
}
73387338
}
73397339

7340-
[WinFormsFact]
7341-
public void ToolStrip_displayedItems_Clear()
7342-
{
7343-
using ToolStripMenuItem toolStripMenuItem = new(nameof(toolStripMenuItem));
7344-
using ToolStripMenuItem listToolStripMenuItem = new(nameof(listToolStripMenuItem));
7345-
toolStripMenuItem.DropDownItems.Add(listToolStripMenuItem);
7346-
toolStripMenuItem.DropDownOpened += (sender, e) =>
7347-
{
7348-
for (int i = 0; i < 4; i++)
7349-
listToolStripMenuItem.DropDownItems.Add("MenuItem" + i);
7350-
7351-
listToolStripMenuItem.DropDown.PerformLayout(); // needed to populate DisplayedItems collection
7352-
};
7353-
7354-
toolStripMenuItem.DropDownClosed += (sender, e) =>
7355-
{
7356-
while (listToolStripMenuItem.DropDownItems.Count > 0)
7357-
listToolStripMenuItem.DropDownItems[listToolStripMenuItem.DropDownItems.Count - 1].Dispose();
7358-
7359-
GC.Collect();
7360-
GC.WaitForPendingFinalizers();
7361-
GC.Collect();
7362-
GC.WaitForPendingFinalizers();
7363-
};
7364-
7365-
toolStripMenuItem.ShowDropDown();
7366-
Assert.Equal(4, listToolStripMenuItem.DropDown.DisplayedItems.Count);
7367-
toolStripMenuItem.HideDropDown();
7368-
Assert.Empty(listToolStripMenuItem.DropDown.DisplayedItems);
7369-
}
7370-
73717340
[WinFormsTheory]
73727341
[InlineData(10, 10)]
73737342
[InlineData(0, 0)]

0 commit comments

Comments
 (0)