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.
我有 DataGridView 组合框列。
我必须单击两次单元格才能打开组合。
任何人都知道如何让它从第一次点击中打开。
先感谢您。
Check below links it will help you
一键直接访问DataGridView组合框?
http://social.msdn.microsoft.com/Forums/en/winformsdatacontrols/thread/a5acbaf3-9d80-4d0c-8c7d-77eea7d4efd0
这是一个更简单的方法:
在 CellEnter 事件中,检查列索引是否与组合框列对应。如果有,设置
DataGridView.EditMode = DataGridViewEditMode.EditOnEnter;
或者如果它是常规列,请将其设置为默认值
DataGridView.EditMode = DataGridViewEditMode.EditOnKeystrokeOrF2;