File tree 3 files changed +2
-40
lines changed
src/System/Windows/Forms/Controls/ToolStrips
tests/UnitTests/System/Windows/Forms
3 files changed +2
-40
lines changed Original file line number Diff line number Diff line change @@ -4680,16 +4680,9 @@ internal void OnItemAddedInternal(ToolStripItem item)
4680
4680
}
4681
4681
}
4682
4682
4683
- internal void OnItemRemovedInternal ( ToolStripItem item , ToolStripItemCollection itemCollection )
4683
+ internal void OnItemRemovedInternal ( ToolStripItem item )
4684
4684
{
4685
4685
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
- }
4693
4686
}
4694
4687
4695
4688
internal override bool AllowsChildrenToShowToolTips ( )
Original file line number Diff line number Diff line change @@ -391,7 +391,7 @@ private void OnAfterRemove(ToolStripItem item)
391
391
392
392
if ( _owner is not null )
393
393
{
394
- _owner . OnItemRemovedInternal ( item , this ) ;
394
+ _owner . OnItemRemovedInternal ( item ) ;
395
395
396
396
if ( ! _owner . IsDisposingItems )
397
397
{
Original file line number Diff line number Diff line change @@ -7337,37 +7337,6 @@ void TimerStartAndItemDispose()
7337
7337
}
7338
7338
}
7339
7339
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
-
7371
7340
[ WinFormsTheory ]
7372
7341
[ InlineData ( 10 , 10 ) ]
7373
7342
[ InlineData ( 0 , 0 ) ]
You can’t perform that action at this time.
0 commit comments