gpt4 book ai didi

c# - Prism 的 DelegateCommand 内存泄漏

转载 作者:行者123 更新时间:2023-11-30 20:39:38 27 4
gpt4 key购买 nike

使用此代码,您可以 100% 地重现我的问题。我创建了一个“父”ViewModel:

using Prism.Commands;
using Prism.Mvvm;
using System.Collections.ObjectModel;

namespace WpfApplication1 {
public class ViewModel : BindableBase {

public ObservableCollection<ChildViewModel> Items { get; set; }

public DelegateCommand<ChildViewModel> CloseItem { get; set; }

public ViewModel() {
CloseItem = new DelegateCommand<ChildViewModel>(OnItemClose);

Items = new ObservableCollection<ChildViewModel>(new[] {
new ChildViewModel { Name = "asdf" },
new ChildViewModel { Name = "zxcv" },
new ChildViewModel { Name = "qwer" },
new ChildViewModel { Name = "fdgz" },
new ChildViewModel { Name = "hgjkghk" }
});
}

private void OnItemClose(ChildViewModel obj) {
Items.Remove(obj);
}
}
}

它包含 ChildViewModel 实例的 ObservableCollection:

using Prism.Mvvm;

namespace WpfApplication1 {
public class ChildViewModel : BindableBase {

public string Name { get; set; }
protected byte[] leakArr = new byte[1024 * 1024 * 10];

}
}

如您所见,我在每个 ChildViewModel 中声明了一个 10mb 的数组。现在 View :

public partial class MainWindow : Window {
public MainWindow() {
InitializeComponent();

DataContext = new ViewModel();
}
}

<Window x:Class="WpfApplication1.MainWindow"
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:local="clr-namespace:WpfApplication1"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<TabControl ItemsSource="{Binding Items}">
<TabControl.ItemTemplate>
<DataTemplate>
<DockPanel>
<TextBlock Text="{Binding Path=Name}" DockPanel.Dock="Left" Margin="2,3,0,2" />
<Button DockPanel.Dock="Right" BorderThickness="0" Background="Transparent"
Margin="10,2,2,2"
Command="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type TabControl}}, Path=DataContext.CloseItem}"
CommandParameter="{Binding}">
<Button.Content>
<TextBlock FontWeight="Bold" Text="X" />
</Button.Content>
</Button>
</DockPanel>
</DataTemplate>
</TabControl.ItemTemplate>
</TabControl>
</Window>

查看 VS2015 内存诊断工具,我可以看到即使每个 ChildViewModel 都已从 Items 集合中删除,它仍然存在于内存中,只有一个对象(对于每个虚拟机)仍然持有对它的引用 - Button 控件。有趣的是,如果我将 Button 的命令声明替换为:

Click="Button_Click"

private void Button_Click(object sender, RoutedEventArgs e) {
(DataContext as ViewModel).CloseItem.Execute(((sender as Button).DataContext as ChildViewModel));
}

没有内存泄漏 - 这意味着调试工具没有显示任何已处理的 ChildViewModel 实例。我不知道这是 Prism 特有的问题,还是 wpf 的某种怪癖。

我正在使用最新版本的 .net 和 prism 库。

最佳答案

我似乎找到了这个问题的解决方案(至少在我的应用程序中)——我停止直接绑定(bind)到 ChildViewModel 实例,而是绑定(bind) CommandParameterChildViewModelName 属性。然后,在 ViewModel 中,我只是浏览 Items 集合并删除具有匹配属性值的项目。现在 VS 诊断工具没有显示任何应该被 GC 而没有的对象,因此内存泄漏消失了。

Prism 团队正在分析这个问题:https://github.com/PrismLibrary/Prism/issues/345

关于c# - Prism 的 DelegateCommand 内存泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34188671/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com