C# 进程内存增加WPF应用程序

C# 进程内存增加WPF应用程序,c#,.net,wpf,memory,syncfusion,C#,.net,Wpf,Memory,Syncfusion,我正在使用Syncfusion库创建一个用于编辑PowerPoint演示文稿的WPF程序,但每当我运行该程序时,在从一个页面导航到另一个页面时,我都会看到内存增加。我使用的WPF应用程序带有一个在多个页面之间导航的窗口 究竟如何遇到这个问题呢 多谢各位 这些照片显示了泄漏的位置: PS:请关注home.cs中的InitializeNouitasks方法,因为这就是漏洞所在 主页XAML: <Page x:Class="ProjectSABX.Pages.Home"

我正在使用Syncfusion库创建一个用于编辑PowerPoint演示文稿的WPF程序,但每当我运行该程序时,在从一个页面导航到另一个页面时,我都会看到内存增加。我使用的WPF应用程序带有一个在多个页面之间导航的窗口

究竟如何遇到这个问题呢

多谢各位

这些照片显示了泄漏的位置:

PS:请关注home.cs中的InitializeNouitasks方法,因为这就是漏洞所在

主页XAML:

<Page x:Class="ProjectSABX.Pages.Home"
  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"
  xmlns:local="clr-namespace:ProjectSABX.Pages"
  xmlns:syncfusion="clr-namespace:Syncfusion.Windows;assembly=Syncfusion.Shared.Wpf"
  xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
  mc:Ignorable="d"
  Width="1175" Height="660" KeyDown="Window_KeyDown"
  Title="Home">
<Grid ShowGridLines="False" Margin="2,-2,-2,2">
    <Grid Grid.Row="0" ShowGridLines="False">
        <Grid.Background>
            <SolidColorBrush Color="White" Opacity="0.5" />
        </Grid.Background>
        <Grid.RowDefinitions>
            <RowDefinition Height="2.5*"></RowDefinition>
        </Grid.RowDefinitions>
        <Rectangle Height="52" Grid.Row="0"  VerticalAlignment="Top" Fill="#FF80A20D"></Rectangle>
        <TextBlock Name="titleBarTextBlock" Text="Aperçu" Height="40" Foreground="White" FontFamily="Segoe UI" FontWeight="Normal" Padding="15" FontSize="17.75"  VerticalAlignment="Top" Grid.Row="0"  HorizontalAlignment="Center"></TextBlock>
        <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0 15 10 0" Grid.Column="3" Grid.Row="0">
        </StackPanel>
        <Image Source="/Images/ViewerIcons/ppt__logo for header.png" Grid.Column="0" HorizontalAlignment="Left" Margin="15" VerticalAlignment="Top" Height="30"></Image>
    </Grid>

    <Grid Grid.Row="1" ShowGridLines="False">
        <Grid.RowDefinitions>
            <RowDefinition Height="0*" />
            <RowDefinition Height="445*" />
            <RowDefinition Height="Auto" />
            <RowDefinition Height="59*"></RowDefinition>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="2*" />
            <ColumnDefinition Width="8*" />
        </Grid.ColumnDefinitions>
        <Border ClipToBounds="True" BorderBrush="Black" BorderThickness=".7" Grid.Row="1" Grid.Column="0" Grid.RowSpan ="3" Margin="0,51,3,0">
            <ScrollViewer Name="scrollViewer" Focusable="False" CanContentScroll="False" BorderBrush="Black" BorderThickness="1" HorizontalScrollBarVisibility="Auto" Grid.Row="1" Grid.Column="0" Grid.RowSpan ="3">
                <Grid ShowGridLines="False">
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="1*" />
                        <ColumnDefinition Width="9*" />
                    </Grid.ColumnDefinitions>
                    <StackPanel Name="stackpanel" Grid.Column="1" Width="170" />
                </Grid>
            </ScrollViewer>
        </Border>

        <Image Name ="centerSlideImage" Grid.Row="1" Grid.Column="1" Margin="0,57,5,19" />

        <Canvas Name="loadingIndicatorCanvas" Visibility="Collapsed" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="1" Grid.Column="1" Margin="-250,-100,0,0">
            <Canvas Canvas.Left="21.75" Canvas.Top="14" Height="81.302" Width="80.197">
                <Canvas.Resources>
                    <Style TargetType="Ellipse">
                        <Setter Property="Width" Value="5" />
                        <Setter Property="Height" Value="5" />
                        <Setter Property="Fill" Value="#FF9BD226" />
                    </Style>
                </Canvas.Resources>

                <Ellipse x:Name="_00" Canvas.Left="24.75" Canvas.Top="50" />
                <Ellipse x:Name="_01" Canvas.Top="36" Canvas.Left="29.5" />
                <Ellipse x:Name="_02" Canvas.Left="43.5" Canvas.Top="29.75" />
                <Ellipse x:Name="_03" Canvas.Left="57.75" Canvas.Top="35.75" />
                <Ellipse x:Name="_04" Canvas.Left="63.5" Canvas.Top="49.75" />
                <Ellipse x:Name="_05" Canvas.Left="57.75" Canvas.Top="63.5" />
                <Ellipse x:Name="_06" Canvas.Left="43.75" Canvas.Top="68.75" />
                <Ellipse x:Name="_07" Canvas.Top="63.25" Canvas.Left="30" />
                <Ellipse Stroke="{x:Null}" Width="39.5" Height="39.5" Canvas.Left="31.75" Canvas.Top="37" Fill="{x:Null}" />
            </Canvas>
        </Canvas>

        <Grid Grid.Row="3" Grid.Column="1" ShowGridLines="False" Margin="0, -10">
            <Grid.RowDefinitions>
                <RowDefinition Height="0.5*" />
                <RowDefinition Height="20*" />
                <RowDefinition Height="10*" />
            </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="42*" />
                <ColumnDefinition Width="45*" />
                <ColumnDefinition Width="44*" />
                <ColumnDefinition Width="45*" />
                <ColumnDefinition Width="238*" />
                <ColumnDefinition Width="30*" />
                <ColumnDefinition Width="40*" />
                <ColumnDefinition Width="46*" />
                <ColumnDefinition Width="30*" />
                <ColumnDefinition Width="45*" />
            </Grid.ColumnDefinitions>
            <Image Name="openDocument" Grid.Row="1" Grid.Column="1" Height="30" Width="30" Source="/Images/ViewerIcons/ppt__open.png" MouseDown="openDocument_MouseDown" MouseEnter="openDocument_MouseEnter" MouseLeave="openDocument_MouseLeave" Margin="0,5,7,4"></Image>
            <Image Name="createPdfDocument" Grid.Row="1" Grid.Column="3" Height="30" Width="30" Source="/Images/ViewerIcons/ppt_pdf.png" MouseDown="createPdfDocument_MouseDown" MouseEnter="createPdfDocument_MouseEnter" MouseLeave="createPdfDocument_MouseLeave" Margin="0,5,8,4"></Image>
            <DockPanel Grid.Row="1" Grid.Column="6" Grid.ColumnSpan="3">
                <Image Name="prevDocument"  Height="30" Width="30" Source="/Images/ViewerIcons/ppt__back.png" MouseDown="prevDocument_MouseDown" MouseEnter="prevDocument_MouseEnter" MouseLeave="prevDocument_MouseLeave"></Image>
                <Label Name="lblPageDisplay" Height="30" MinWidth="30" FontFamily="Segoe UI" FontWeight="Bold" FontSize="18" VerticalAlignment="Center" VerticalContentAlignment="Center" Padding="35,0,0,0" Foreground="#646464" />
                <Image Name="NextDocumentIconImage" Height="30" Width="30" Source="/Images/ViewerIcons/ppt__for.png"  MouseDown="NextDocument_MouseDown" MouseEnter="NextDocument_MouseEnter" MouseLeave="NextDocument_MouseLeave" Margin="-10,0"></Image>
            </DockPanel>
        </Grid>
    </Grid>
</Grid>
    public Home()
    {
        InitializeComponent();

        pdfBackroundWorker.DoWork += pdfBackroundWorker_DoWork;
        pdfBackroundWorker.RunWorkerCompleted += pdfBackroundWorker_RunWorkerCompleted;
        this.Background = new SolidColorBrush(Color.FromRgb(244, 244, 244));
        filePath = "/Data/Template.pptx";
        
        InitializeNonUITasks();
        InitializeUITasks(filePath);
        

    }

        
    private void openDocument_MouseDown(object sender, MouseButtonEventArgs e)
    {
        Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();
        dlg.Filter = "PowerPoint Presentations|*.pptx";
        Nullable<bool> result = dlg.ShowDialog();
        if (result == true)
        {
            string filename = dlg.FileName;
            filePath = filename;
            slideNumber = 1;
            displayBackroundWorker.RunWorkerAsync();
        }
    }
    private void InitializeNonUITasks()
    {
        try
        {
            presentation = Presentation.Open(filePath);
        }
        catch (Exception exp)
        {
            MessageBox.Show("This PowerPoint Presentation cannot be opened properly, please contact support");
            return;
        }
        slideImageSources.Clear();
        thumbnailImageSource.Clear();
        printImages.Clear();
        currentSlideNumber = 0;
        presentation.ChartToImageConverter = new ChartToImageConverter();
        presentation.ChartToImageConverter.ScalingMode = Syncfusion.OfficeChart.ScalingMode.Best;
        try
        {
            foreach (ISlide slide in presentation.Slides)
            {
                using (System.Drawing.Image image = slide.ConvertToImage(Syncfusion.Drawing.ImageType.Bitmap))
                {
                    System.Drawing.Image.GetThumbnailImageAbort myCallback = new System.Drawing.Image.GetThumbnailImageAbort(ThumbnailCallback);
                    printImages.Add(image.Clone() as System.Drawing.Image);
                    System.Drawing.Image newImage = image.GetThumbnailImage(170, 100, myCallback, System.IntPtr.Zero);
                    using (Stream ms = new MemoryStream())
                    {
                        newImage.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
                        var decoder = BitmapDecoder.Create(ms, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.OnLoad);
                        thumbnailImageSource.Add(decoder.Frames[0]);
                    }

                    using (Stream ms = new MemoryStream())
                    {
                        image.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
                        var decoder = BitmapDecoder.Create(ms, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.OnLoad);
                        slideImageSources.Add(decoder.Frames[0]);
                    }
                }
            }
        }
        catch (Exception)
        {
            MessageBox.Show("This PowerPoint Presentation cannot be converted to images properly, please contact support");
            return;
        }
    }
<Frame Grid.Column="1" Grid.Row="1" NavigationUIVisibility="Hidden" x:Name="Main" Source="./Pages/Home.xaml">
        <Frame.Background>
            <SolidColorBrush Color="#FFB0B0B0" Opacity="0.49" />
        </Frame.Background>
    </Frame>
public partial class MainWindow : Window
{
    public MainWindow()
    {
        DataContext = this;
        InitializeComponent();
    }
    private void ButtonClickHomePage(object sender, RoutedEventArgs e)
    {
        Main.Content = new Home();
    }
 }
Edit1:我尝试对实现IDisposable的每个对象使用dispose()方法,开始导航时,内存进程会减少。然后,当我从一页导航到另一页时,它再次增加


很难找到这样的问题,但我有一些建议:

通常是对实现
IDisposable
接口的所有对象调用
Dispose

  • 检查
    IDisposable
    接口的所有对象,并调用
    Dispose()
    (如果可用)。例如:newImage.Dispose()(或使用
    使用
  • 此外,还应处置列表
    printImages
    thumbnailImageSource
    等中的所有一次性对象
  • 此外,我认为
    解码器
    以及
    演示
    也应该被处理,尽管我可能会弄错

这将给你一个很好的起点——可能还有更多,但你应该先排除并解决这个问题

循环可能是导致内存增加的原因


这里有更多的信息。另外,如果您自己实现了
IDisposable
接口,那么犯错误也是很常见的。在这种情况下,您应该仔细检查它。

我们无法使用给定的代码示例重现所提到的问题。为供您参考,我们附上了我们试图复制上述问题的样品

示例链接


在此示例中,最大内存使用量约小于500MB。因此,请为我们提供上述内容的修改样本,以重现上述问题,以便我们可以进一步分析并向您提供适当的详细信息。

请您进一步详细说明,我没有发现您。根据内存配置文件,可能是
MemoryStream
对象,但不确定这是怎么发生的。它实现了
IDisposable
接口,并在
using
语句中使用,因此应该在之后处理它。快照仍然显示内存使用率较低(例如,内存流为13MB),您可以共享以后的快照吗?@asaf92我添加了快照,包括启动应用程序的那一刻,首先在主页和其他页面之间导航,然后返回主页并多次重新导航到快照信息,即使是最大的内存消耗者也会消耗相当多的兆字节。您的探查器是否在“进程内存(GB)”图表上显示托管内存消耗或总内存消耗?所以一般的建议是找到占用千兆字节RAM的对象,看看它们为什么被保存在内存中,是否应该保存。