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.
如何在 RadGridview 中实现单元格值更改,当我在一个单元格中输入数字时,计算出的数字应显示在下一行,如何实现单元格值更改触发器
请帮帮我
提前致谢
您可以在 CellValueChanged 事件中编写代码
void radGridView1_CellValueChanged(object sender, GridViewCellEventArgs e) { if (e.Column.Name == "Val") { e.Row.Cells["Colname"].Value = (int)e.Value + 'someting'; } }