gpt4 book ai didi

wpf - 自定义集合在编辑时崩溃 DataGrid

转载 作者:行者123 更新时间:2023-12-04 15:37:06 25 4
gpt4 key购买 nike

我目前正在尝试将 DataGrid.ItemsSource 绑定(bind)到自定义 RowCollection,该 RowCollection 实现了 IList 和 INotifyCollectionChanged:
Public Class RowCollection(of T)

Implements IList(Of T)

Implements INotifyCollectionChanged

Private _List As New List(Of T)

...

(对不起 VB 代码,我很快就会把我所有的代码翻译成 C#。)

注意类(class)从任何现有的 CLR 集合派生。我创建了自己的类,因为我需要重写 GetItemAt,以实现记录分页。
集合内部从它自己的私有(private)列表中添加和删除对象_List .

现在,我可以查看 DataGrid 中的项目,但只要双击要编辑的单元格,我就会收到 。 InvalidOperationException:“EditItems”不可用。 .

我的问题是,为了使我的集合与 DataGrid 完全兼容,我应该实现哪些其他接口(interface)?

最佳答案

Here您可以阅读以下内容:

Editing

By default, you can edit items directly in the DataGrid. To guarantee that edits can be committed and canceled correctly, the objects in the DataGrid must implement the IEditableObject interface. Alternatively, you can set the IsReadOnly property to true to disable editing in the DataGrid.



IEditableObject 接口(interface)是 here
另请参阅 IEditableCollectionView here

关于wpf - 自定义集合在编辑时崩溃 DataGrid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5181519/

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