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.
我正在做 VB6 到 VB.NET 的转换。我在 VB.NET 中使用以下 DataGridView 事件时遇到问题:
AfterColUpdate
AfterDelete
BeforeDelete
请帮忙。
.net 中的 datagridview 不支持这些事件。
使用CellValueChanged代替AfterColUpdate, UserDeletedRowfor AfterDelete, UserDeletingRow for BeforeDelete。
CellValueChanged
UserDeletedRow
UserDeletingRow