Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GridEX.AddingRecord 是验证的明显钩子,但我不知道如何访问输入到新行单元格中的值?
我的网格绑定到 DTO。_grid.GetRow().DataRow 返回没有设置任何属性的 DTO。
使用以下代码访问 AddRecord 事件中的单元格值:
object value = grid.GetRow().Cells["ColumnName"].Value;
其中“ColumnName”是网格属性中的列键。
当然,您必须将返回的值转换为您期望从此字段中返回的数据类型。