views:

693

answers:

1

I'm working on a WinForm client with a DataGridView control. I notice users have to click once to select the cell and again to edit it. What is the way to change this to a single click edit mode? I thought I had seen something like this before but can't remember the name.

+1  A: 

In the DataGridView properties: EditMode -> EditOnEnter

Meta-Knight