- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
[更新,见底部!]
我们托管 WPF 的 WinForms 应用程序中存在内存泄漏 FlowDocumentReader
在 ElementHost
.我在一个简单的项目中重新创建了这个问题并添加了下面的代码。
应用程序的作用
当我按下 button1
:
UserControl1
其中只包含一个 FlowDocumentReader
创建并设置为 ElementHost
的 Child
FlowDocument
从文本文件创建(它只包含一个 FlowDocument
和一个 StackPanel
和几千行 <TextBox/>
)FlowDocumentReader
的 Document
属性设置为此 FlowDocument
FlowDocument
正确。正如预期的那样,使用了大量内存。
button1
再次单击,内存使用量增加,并且每次重复该过程时都会增加!尽管使用了大量新内存,但 GC 没有收集!没有不应该存在的引用,因为:button2
其中集 elementHost1.Child
为 null 并调用 GC(参见下面的代码),另一个奇怪的事情发生了 - 它不会清理内存,但如果我继续点击它几秒钟,它最终会释放它! ElementHost
来自
Controls
收藏,
Disposing
它,将引用设置为空,然后调用 GC 不会释放内存。
button1
被多次点击,内存使用量不应继续上升 using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Windows.Documents;
using System.IO;
using System.Xml;
using System.Windows.Markup;
using System.Windows.Forms.Integration;
namespace WindowsFormsApplication7
{
public partial class Form1 : Form
{
private ElementHost elementHost;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string rawXamlText = File.ReadAllText("in.txt");
using (var flowDocumentStringReader = new StringReader(rawXamlText))
using (var flowDocumentTextReader = new XmlTextReader(flowDocumentStringReader))
{
if (elementHost != null)
{
Controls.Remove(elementHost);
elementHost.Child = null;
elementHost.Dispose();
}
var uc1 = new UserControl1();
object document = XamlReader.Load(flowDocumentTextReader);
var fd = document as FlowDocument;
uc1.docReader.Document = fd;
elementHost = new ElementHost();
elementHost.Dock = DockStyle.Fill;
elementHost.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
Controls.Add(elementHost);
elementHost.Child = uc1;
}
}
private void button2_Click(object sender, EventArgs e)
{
if (elementHost != null)
elementHost.Child = null;
GC.Collect();
GC.WaitForPendingFinalizers();
GC.Collect();
}
}
}
<UserControl x:Class="WindowsFormsApplication7.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<FlowDocumentReader x:Name="docReader"></FlowDocumentReader>
</UserControl>
ElementHost
,每次按下按钮时都会处理并重新创建它。虽然这确实有点帮助,但从某种意义上说,当您发送垃圾邮件单击 button1 时内存会上下波动,而不是仅仅上升,但它仍然没有解决问题 - 内存总体上升,并且在以下情况下不会被释放表格已关闭。所以现在我悬赏了。
Controls.TextBox
和 16125 Controls.TextBoxView
两者都 Root 于 16125 Documents.TextEditor
根植于终结队列的对象 - 请参阅此处:
ElementHost
的纯 WPF 应用程序中再次遇到了这个问题。或
FlowDocument
,所以回想起来,标题是误导性的。正如 Anton Tykhyy 所解释的,这只是 WPF
TextBox
的一个错误。本身,它没有正确处理它的
TextEditor
.
TextBoxes
的控件实例时,我这样做(在控件的代码隐藏中):
var textBoxes = FindVisualChildren<TextBox>(this).ToList();
foreach (var textBox in textBoxes)
{
var type = textBox.GetType();
object textEditor = textBox.GetType().GetProperty("TextEditor", BindingFlags.NonPublic | BindingFlags.Instance).GetValue(textBox, null);
var onDetach = textEditor.GetType().GetMethod("OnDetach", BindingFlags.NonPublic | BindingFlags.Instance);
onDetach.Invoke(textEditor, null);
}
FindVisualChildren
是:
public static IEnumerable<T> FindVisualChildren<T>(DependencyObject depObj) where T : DependencyObject
{
if (depObj != null)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
{
DependencyObject child = VisualTreeHelper.GetChild(depObj, i);
if (child != null && child is T)
{
yield return (T)child;
}
foreach (T childOfChild in FindVisualChildren<T>(child))
{
yield return childOfChild;
}
}
}
}
TextBox
应该做的。最后我也打了
GC.Collect()
(并非绝对必要,但有助于更快地释放内存)。这是一个非常丑陋的解决方案,但它似乎解决了问题。没有了
TextEditors
卡在完成队列中。
最佳答案
我在这里找到了这篇博文:Memory Leak while using ElementHost when using a WPF User control inside a Windows Forms project
所以,在你的 Button2 点击事件中试试这个:
if (elementHost1 != null)
{
elementHost1.Child = null;
elementHost1.Dispose();
elementHost1.Parent = null;
elementHost1 = null;
}
Form1
.有了这个,我尝试打开你的表单大约 20 次,总是点击 Button1 然后 Button2 然后关闭表单,内存使用量保持不变。
ElementHost
的一个错误控制。
Form1
:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
m_uc1 = new UserControl1();
elementHost1.Child = m_uc1;
}
private UserControl1 m_uc1;
private void button1_Click(object sender, EventArgs e)
{
string rawXamlText = File.ReadAllText(@"in.txt");
var flowDocumentStringReader = new StringReader(rawXamlText);
var flowDocumentTextReader = new XmlTextReader(flowDocumentStringReader);
object document = XamlReader.Load(flowDocumentTextReader);
var fd = document as FlowDocument;
m_uc1.docReader.Document = fd;
flowDocumentTextReader.Close();
flowDocumentStringReader.Close();
flowDocumentStringReader.Dispose();
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
if (elementHost1 != null)
{
elementHost1.Child = null;
elementHost1.Dispose();
elementHost1.Parent = null;
elementHost1 = null;
}
}
关于c# - ElementHost + FlowDocument = GC 不工作,内存不断增加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14757527/
在我们对延迟敏感的应用程序中,我们有缓存数据(驻留在 TG 中)和在 YG 中消亡的短暂对象。我已经看到次要 GC 时间和主要 GC 时间有显着差异。我怀疑这与TG的尺寸相对较大有关。谁能解释 GC
我看到了多个建议运行 GC.Collect(GC.MaxGeneration) 的答案。 既然方法GC.Collect()会收集所有存在的分代,那么两者有什么区别吗? 也许如果只有两代而不是三代,GC
我们正在使用 UseParallelGC。 GC 日志看起来像 2016-06-09T19:38:17.362+0000:655312.397:[完整GC(人体工程学)[PSYoungGen:2291
我最近看到了两个非常好的和有教育意义的语言讲座: This first one由 Herb Sutter 撰写,介绍了 C++0x 的所有漂亮和酷炫的特性,为什么 C++ 的 future 似乎比以往
我们正在运行 gerrit 2.10.7,我们偶尔会遇到损坏的对象没有被 gerrit gc 修复的问题,即使 git gc 可以很好地修复它们。 另一方面,我读到 gerrit gc 会创建优化其他
我试图避免 Full GC(来自下面的 gc.log 示例)在生产中的 Tomcat 中运行 Grails 应用程序。关于如何更好地配置 GC 有什么建议吗? 14359.317:[完整 GC 143
我试图通过在析构函数中使用 console.WriteLine() 来确保释放某个类的实例,但输出从未出现。 我仔细搜索了任何挥之不去的引用资料以及事件订阅,但没有找到。只是为了我自己的理智,在我继续
之前看过一篇文章,说FGC影响时序,导致application出错结果。 代码示例如下: long start = System.currentTimeInMillis(); doSomething(
在 Java 中,我们可以使用 System.gc() 方法来建议 GC。今天我从this link开始了解C#中的GC.Collect()方法。 . 但我对解释有些不清楚。 第一行。 Forces
我理解 Python GC 有两种工作方式: 1) 基本引用计数 - 当“name”设置为“Tom”时,“John”下方的引用计数为零 name = "John" name = "Tom" (Refe
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
今天我们使用并发标记清除,具体如下: -XX:+UseConcMarkSweepGC 我看到一些文章推荐使用这种形式的附加参数: -XX:+UseConcMarkSweepGC -XX:+CMSInc
当我运行我的程序时,logcat 显示很多 GC Activity 喜欢 GC freed 10324 objects/ 510376 bytes in 103 ms GC freed 10324 o
2013-11-26T10:19:30.011+0800: [GC [ParNew: 2432484K->19997K(2696640K), 0.0378270 secs] 5560240K->315
在执行 GC 时,JVM 会遍历 Activity 对象,并清除未标记的对象。 根据: How to Tune Java Garbage Collection “Full GC的执行时间相对Minor
我有一个分布式缓存应用程序(内存绑定(bind),由于与集群中其他节点的交互而具有网络 I/O)在 JVM 1.7.0_51 中运行,带有 G1 垃圾收集器。这是 JVM 配置: -server -X
首先,我想让您知道,这是一个理论问题而不是实际问题,我只是好奇弱引用对象是如何被释放的。让我们快速记住 Java 中的弱引用是什么。粗略地说WeakReference意味着当没有指向“我”的强引用时,
这是运行大约 10 分钟后的输出。 Heap PSYoungGen total 7040K, used 0K [0x24060000, 0x247c0000, 0x26790000)
我正在运行一个应用程序,在 Weblogic 上使用 java 5 和 CMS 垃圾收集器。在垃圾收集日志中,我看到了消息日志,其中大部分消息我可以使用 Sun 的 Java HotSpot 虚拟机中
我有一个 ConcurrentMap> map = new ConcurrentHashMap>(); 并且希望当 SoftReference 的引用被 GC 时从映射中删除键/值对。 我该如何实现这
我是一名优秀的程序员,十分优秀!