2013-05-09 45 views
0

Visual Studio 2012 Project with memory leak與互動內存泄漏觸發在MVVM光工具包的Silverlight

您好! 在MVVM Light Toolkit中使用交互觸發器時發現內存泄漏。 我用這個XAML

<UserControl x:Class="MemoryLeakTest.MainPage" 
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
     xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
     xmlns:ignore="http://www.ignore.com" 
     mc:Ignorable="d ignore" 
     xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" 
      xmlns:mvvm="clr-namespace:GalaSoft.MvvmLight.Command;assembly=GalaSoft.MvvmLight.Extras.SL5" 
     x:Name="control" 
     DataContext="{Binding Main, Source={StaticResource Locator}}"> 

<Grid x:Name="LayoutRoot"> 

    <ItemsControl ItemsSource="{Binding LeakObjects}"> 
     <ItemsControl.ItemsPanel> 
      <ItemsPanelTemplate> 
       <StackPanel/> 
      </ItemsPanelTemplate> 
     </ItemsControl.ItemsPanel> 
     <ItemsControl.ItemTemplate> 
      <DataTemplate> 
       <Border Width="300" BorderThickness="6" BorderBrush="BlueViolet" CornerRadius="3"> 
        <Grid Background="{Binding ColorBrush}" > 
         <StackPanel> 
          <Button Command="{Binding ElementName=control, Path=DataContext.Command}" Width="100" Height="40" Content="Tryck!"> 
           <i:Interaction.Triggers> 
            <i:EventTrigger EventName="Click"> 
             <mvvm:EventToCommand Command="{Binding ElementName=control, Path=DataContext.Command}" CommandParameter="{Binding}"/> 
            </i:EventTrigger> 
           </i:Interaction.Triggers> 
          </Button> 
          <TextBlock Text="{Binding Text}"/> 
         </StackPanel> 
        </Grid> 
       </Border> 
      </DataTemplate> 
     </ItemsControl.ItemTemplate> 
    </ItemsControl> 
</Grid> 

,然後我重新綁定列表LeakObjects,使其創造了新的項目。 像按鈕和文本塊的舊項目(xaml)仍然在內存中,不GC。

如果我寫

<Button Command="{Binding ElementName=control, Path=DataContext.Command}" Width="100" Height="40" Content="Press!"/> 

及使用按鈕命令參數不存在內存泄漏,但如果我用

<i:Interaction.Triggers> 
    <i:EventTrigger EventName="Click"> 
      <mvvm:EventToCommand Command="{Binding ElementName=control, Path=DataContext.Command}" CommandParameter="{Binding}"/> 
    </i:EventTrigger> 
</i:Interaction.Triggers> 

有重大泄漏。

的問題是,有上格柵等

鏈路中的項目有一個非常簡單的項目演示問題沒有命令參數。

有沒有辦法規避內存泄漏?也許我錯了。

重要的是我找到了解決這個問題的方法,因爲這個內存泄漏已經遍佈我們的應用程序。

回答