|
Hi,
I am currently working with a Windows Form application, and there is a datagridview control on the form which will provide property information for the element selected in the application. Say, for example, this datagridview is now showing the coordinates of the element (CAD application), I would like to select one coordinate in one cell and change its value. Below is one scenario that does not achieve what we want:
1. click on the cell. This will select the whole lot of the value (i think this is the default behaviour of datagridview?) 2. press "Delete" button on the keyboard, this will erase the coordinate value from the cell, BUT the focus cursor is not within the cell. User can not type in the value they want.
How can I make sure the cursor is well showing in the cell allowing further inputting? (without actually clicking in the cell)
|