Comments
Sort by recent activity
Hmm.. after searching for a long time, I stumpled apon an object which is an root object. Examing the code, I don't really think this is the real cause of the leak. Here is a summary of the code:
public class AccordionPaneAdapter : IGroup
{
private static readonly Dictionary<AccordionPane, IGroup> paneGroups = new Dictionary<AccordionPane, IGroup>();
private readonly AccordionPane pane;
public AccordionPaneAdapter(AccordionPane pane)
{
this.pane = pane;
Debug.Assert(!paneGroups.ContainsKey(pane));
paneGroups.Add(pane, this);
}
... / comments
Hmm.. after searching for a long time, I stumpled apon an object which is an root object. Examing the code, I don't really think this is the real cause of the leak. Here is a summary of the code:
p...