0

我用c#开发。在使用 WindowsForms 一段时间后,我切换到 WPF。经过一段时间的开发,我意识到我的应用程序在运行高进程后需要更多时间来减少内存消耗。使用 WinForms 我没有问题。所以我用内存分析器分析它,我发现 wpfgfx_v0400.dll 保留了很多内存,之后它没有减少。所以问题是这个库的功能是什么。我知道这是一个本机 WPf 库,并且在图形渲染的上下文中,但是在其中 wpf 或对象的特殊控件将被称为这个库?

4

1 回答 1

2

作为快速修复,您可以使用此方法清除内存泄漏

  public class MemoryManagement
    {
        /// <summary>
        /// Clear un wanted memory
        /// </summary>
        public static void FlushMemory()
        {
            try
            {
                GC.Collect();
                GC.WaitForPendingFinalizers();
                if (Environment.OSVersion.Platform == PlatformID.Win32NT)
                {
                    SetProcessWorkingSetSize(System.Diagnostics.Process.GetCurrentProcess().Handle, -1, -1);
                }
            }
            catch (Exception e)
            {
            }
        }

        /// <summary>
        /// set process working size
        /// </summary>
        /// <param name="process">Gets process</param>
        /// <param name="minimumWorkingSetSize">Gets minimum working size</param>
        /// <param name="maximumWorkingSetSize">Gets maximum working size</param>
        /// <returns>Returns value</returns>
        [DllImportAttribute("kernel32.dll", EntryPoint = "SetProcessWorkingSetSize", ExactSpelling = true, CharSet =
          CharSet.Ansi, SetLastError = true)]
        private static extern int SetProcessWorkingSetSize(IntPtr process, int minimumWorkingSetSize, int maximumWorkingSetSize);
    }

将此类添加到您的应用程序并在遇到内存泄漏的地方调用 FlushMemory 方法。

于 2015-07-17T09:08:44.483 回答