1

我有一个绑定到 ObservabelCollection 的 Datagrid。当更改为添加时,数据网格刷新得很好,删除集合上的项目,但如果我更改该集合上一个项目的属性,网格不会刷新。

网格定义:

        <DataGrid x:Name="DatGridPlanillas" ItemsSource="{Binding ListaPlanillas,Mode=TwoWay}">
            <DataGrid.Columns>
                <DataGridTextColumn Header="{x:Static resources:Labels.GENERAL_IdDocumeto}" Binding="{Binding StrIdDocumento,Mode=TwoWay}" ClipboardContentBinding="{x:Null}"/>
                <DataGridTextColumn Header="{x:Static resources:Labels.GENERAL_FechaCreacion}" Binding="{Binding DatFechaDocumento}" ClipboardContentBinding="{x:Null}"/>
            </DataGrid.Columns>
        </DataGrid>

变化

DocumentsBO MiGestorDeDocumentos = new DocumentsBO(db);
foreach (MyEntity Doc in ListaPlanillas)
{
    Documento DocumentoFinal = MiGestorDeDocumentos.NewDocIdByModule(_IntIdModulo);
    Doc.StrIdDocumento = DocumentoFinal.StrIdDocumento;
    Doc.IntIdDocumento = DocumentoFinal.IntIdDocumento;
    Doc.PlanillaAcopioGenerada = true;
    Doc.NumDocumentonumero = DocumentoFinal.NumDocumento;
    db.entry(Doc).State = EntityState.Modified;
}

我发现的唯一方法是清空原始集合然后恢复它

db.SaveChanges();
ObservableCollection<MyEntity> _tmp = _ListaPlanillas;
ListaPlanillas = new ObservableCollection<MyEntity>();
ListaPlanillas = _tmp; 

但在我看来,执行如此简单的事情的方式非常丑陋。当仅更改集合的属性时,如何强制网格更新?

4

1 回答 1

1

您需要在INotifyPropertyChanged要放入集合的对象上实现接口。然后PropertyChanged在更新对象属性时触发事件。有关示例,请参见http://msdn.microsoft.com/en-us/library/system.componentmodel.inotifypropertychanged.aspx 。

于 2013-10-03T22:24:42.100 回答