你可以在gridview key down事件中尝试这样的事情
原文链接:https://www.f2er.com/vb/255964.htmlPrivate Sub DataGridView1_Keydown (...) Handlers DataGridView1.KeyDown If e.KeyCode = Keys.Enter Then ' Your code here e.SuppressKeyPress = True End If End Sub
另一种选择是创建自定义网格视图控件