Hi,
I am using TabGroupPane control within XamDocManager control for adding new tabs in TabGroupPane.
I am creating ContentPane dynamically and setting its content to UserControl,
when i add ContentPane to TabGroupPane immedially Memory Usage increasing in TaskManager and after closing Pane its not releasing that memory,
every time when i add ContentPane memory increases continuously.
this is very critical issue,
please provide solution as soon as possible.
I have tried with below solution on PaneClosing event, still the same issue.
private void xamDockManager_PaneClosing(object sender, CancellablePaneEventArgs e) { try { if (this.xamDockManager.Panes.Contains(e.Pane)) { this.xamDockManager.Panes.Remove(e.Pane); } if (this.xamDockManager.DocumentContentHost.Panes.Contains(e.Pane.OwnerPane as TabGroupPane)) { TabGroupPane tgp = e.Pane.OwnerPane as TabGroupPane; tgp.Panes.Remove(e.Pane as ContentPane); } GC.Collect(); GC.WaitForPendingFinalizers(); GC.Collect(); } catch { } }
please help me to resolve this memory leak issue.
thanks,
uc
Hello,
We have shipped out a new service release where your issue is resolved. I'd be glad to find out if you had tested it out and if it had met your requirements.
You can download the Service Releases by logging to our web site and going to Account \Keys & Downloads.
https://es.infragistics.com/my-account/keys-and-downloads/
Now we tried with Infragistics SL 14.1.10141.2009
Chrome: no memory leakIE: a severe memory leak
How is it possible that memory leak is now present only in IE?
Regards,Igor.
We tried with Infragistics SL 13.2.20132.2136 build.
It's 80% better than before. Most of memory gets released. However, some of memory still remains allocated, so memory usage still slowly increases. It's not yet completely good, but it's 80% better than before.