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.
我正在拦截 RadGrid 的更新操作。像这样
e.Canceled = true; GridEditableItem item = e.Item as GridEditableItem; Hashtable dictionary = new Hashtable(); item.ExtractValues(dictionary);
这给了我 HashTable 中的更改值。问题是我想访问当前行的所有元素。我怎么做
如果你更换
item.ExtractValues(dictionary);
和
e.Item.OwnerTableView.ExtractValuesFromItem(dictionary,item);
您应该拥有字典中的所有元素。