从 Infragistics DataPresenter 的 DataItem 中查找 DataRecord
我正在尝试检索与绑定到我的 XamDataGrid
的给定数据项关联的 DataRecord
。除了枚举集合中的所有 DataRecords
并将 DataRecord.DataItem
与有问题的 dataItem 进行比较之外,还有什么方法可以找到 DataRecord
?
I'm trying to retrieve the DataRecord
associated with a given data item bound to my XamDataGrid
. Is there any way to find the DataRecord
other than enumerating through all the DataRecords
in the collection and comparing the DataRecord.DataItem
to the dataItem in question?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DataRecordCollection 公开了一个 GetDataRecordFromDataItem 方法,该方法可用于从 DataItem
http://help.infragistics.com/NetAdvantage/WPF/2011.2/CLR4.0/?page=InfragisticsWPF4.DataPresenter.v11.2~Infragistics.Windows.DataPresenter.DataRecordCollection~GetDataRecordFromDataItem.html
There is a GetDataRecordFromDataItem method exposed by the DataRecordCollection and this could be used to get a DataRecord from the DataItem
http://help.infragistics.com/NetAdvantage/WPF/2011.2/CLR4.0/?page=InfragisticsWPF4.DataPresenter.v11.2~Infragistics.Windows.DataPresenter.DataRecordCollection~GetDataRecordFromDataItem.html