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.
我有一个通过 DataSet.xsd 和表适配器填充的 gridview。
我可以使用哪个事件来确定用户何时双击单元格并修改其值?
您会认为是这样,DataGridView_CellValueChanged但是每次创建/绑定一行时都会触发该事件,这不是我想要的。
DataGridView_CellValueChanged
我想要触发的事件,当用户双击一个单元格将其置于编辑模式,然后更改它的值时。因此,如果值没有改变,则事件不应触发。
DataGridView 事件 CellBeginEdit 在用户开始编辑时触发。您可以在此处存储值并比较其他事件 CellEndEdit 上的最后值和当前值。