如何在 Silverlight 中关闭 tabitem 后释放内存?
我附上了一个例子。每次打开表单时 选项卡控件中添加了一个新选项卡 可以添加大约30兆字节的系统内存。 并且关闭选项卡,也不会释放内存! 谁可以帮忙?
我的样本: http://www.mediafire.com/?j9bk0q4z607ss3s
我的帖子:http://forums.silverlight.net /t/239990.aspx/2/10?缓慢+系统+之后+a+一点+时间+
I've attached an example. Every time a form is opened
A new tab is added to the tab control
About 30 megabytes of system memory can be added.
And closing the tab, it will not be released memory!
Who can help?
my sample:
http://www.mediafire.com/?j9bk0q4z607ss3s
my post: http://forums.silverlight.net/t/239990.aspx/2/10?Slowly+system+after+a+little+time+
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
取消注册所有跨对象事件处理程序,即处理静态对象、全局对象事件的处理程序...如果该事件在您的选项卡中引发并处理,那就可以了。这些将被自动GCed。
使用内存分析器
Unregister all cross-object event handlers, i.e. handlers handling events of static objects, global objects, ... If the event is raised and handled in your tab, that's ok. These will be automatically GCed.
Use memory profiler