是否有一种简单的方法可以将infragistics UltraGridRow
转换为标准DataRow
对象?
答案 0 :(得分:5)
如果已将UltraGrid的DataSource设置为DataTable,则可以使用
提取当前ActiveRow的基础DataRow if(grid.ActiveRow != null && grid.ActiveRow.IsDataRow)
{
DataRow row = (grid.ActiveRow.ListObject as DataRowView).Row;
}
当然,您可以将此示例的ActiveRow替换为IsDataRow属性为true的每个UltraGridRow(谨防SummaryRows和OutlookGroupByRow)
请注意,如果您绑定到DataSource List<CustomClass>
,则ListObject
可以返回CustomClass
的单个实例
答案 1 :(得分:2)
如果我没记错的话,您可以通过以下方式访问基础DataRow
:
var myDataRow = ((DataRowView)myUltraGridRow.ListObject).Row;
给出grid.DataSource对象是DataTable或DataSet的前提条件。
答案 2 :(得分:1)
使用UltraGridRow的ListObject属性获取基础数据项。