c# – 添加/删除行时,WPF DataGrid是否会触发事件?

每当DataGrid获取更多行或删除一些行时,我希望重新计算内容.我尝试使用Loaded事件,但只触发了一次.

我找到了AddingNewItem,但是在添加它之前就已经解雇了.之后我需要做我的事情.

还有LayoutUpdated,它可以使用,但我担心使用它是不明智的,因为它经常用于我的目的.

解决方法

如果您的DataGrid绑定了某些东西,我想到了两种方法.

您可以尝试获取DataGrid.ItemsSource集合,并订阅其CollectionChanged事件.这只有在你知道它首先是什么类型的集合时才有效.

// Be warned that the `Loaded` event runs anytime the window loads into view,// so you will probably want to include an Unloaded event that detaches the
// collection
private void DataGrid_Loaded(object sender,RoutedEventArgs e)
{
    var dg = (DataGrid)sender;
    if (dg == null || dg.ItemsSource == null) return;

    var sourceCollection = dg.ItemsSource as ObservableCollection<viewmodelBase>;
    if (sourceCollection == null) return;

    sourceCollection .CollectionChanged += 
        new NotifyCollectionChangedEventHandler(DataGrid_CollectionChanged);
}

void DataGrid_CollectionChanged(object sender,NotifyCollectionChangedEventArgs e)
{
    // Execute your logic here
}

另一种解决方案是使用事件系统,如Microsoft Prism的EventAggregator或MVVM Light的Messenger.这意味着只要绑定集合发生更改,viewmodel就会广播DataCollectionChanged事件消息,并且View会订阅接收这些消息并在任何时候执行代码.

使用EventAggregator

// Subscribe
eventAggregator.GetEvent<CollectionChangedMessage>().Subscribe(DoWork);

// Broadcast
eventAggregator.GetEvent<CollectionChangedMessage>().Publish();

使用Messenger

//Subscribe
Messenger.Default.Register<CollectionChangedMessage>(DoWork);

// Broadcast
Messenger.Default.Send<CollectionChangedMessage>()

相关文章

在项目中使用SharpZipLib压缩文件夹的时候,遇到如果目录较深,则压缩包中的文件夹同样比较深的问题。比...
项目需要,几十万张照片需要计算出每个照片的特征值(调用C++编写的DLL)。 业务流程:选择照片...
var array = new byte[4]; var i = Encoding.UTF8.GetBytes(100.ToString(&quot;x2&quot;));//...
其实很简单,因为Combox的Item是一个K/V的object,那么就可以把它的items转换成IEnumerable&lt;Dic...
把.net4.6安装包打包进安装程序。 关键脚本如下: 头部引用字符串对比库 !include &quot;WordFunc....
项目需求(Winform)可以批量打印某个模板,经过百度和摸索,使用iTextSharp+ZXing.NetʿreeSp...