Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Memory leak with ContextMenuStrip

I'm creating a lot of custom controls and adding them to a FlowLayoutPanel. There is also a ContextMenuStrip created and populated at design time.

Every time a control is added to the panel it has its ContextMenuStrip property assigned to this menu, so that all controls "share" the same menu. But I noticed when the controls are removed from the panel and disposed of, the memory in use in Task Manager doesn't drop. It rises around 50kB every time a control is created and added to the layout panel.

I downloaded the trial of .NET Memory Profiler and it showed there were references to the menu strip hanging around after the controls were disposed. I changed the code to explicitly set the ContextMenuStrip property to null before disposing of the control, and yep, the memory is now released. Why is this? Shouldn't the GC clean up this type of thing?

like image 433
Dave Avatar asked May 08 '10 00:05

Dave


1 Answers

If you take a look at the ContexmenuStrip property of Control, you will see that the setter subscribes the control to the Disposed event of the MenuStrip, creating a back-reference from the MenuStrip to the Control.

This means it is a classic case of reachable-through-event and you already found the solution: set the ContexmenuStrip property to null.

like image 112
Henk Holterman Avatar answered Oct 27 '22 02:10

Henk Holterman