datagrid operation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Implemet a DataGridTextBox, add a double click event for the same and then
try to capture...here is the sample code
private DataGridTextBox dgTxtBox;
DataGridTextBoxColumn dgPanicCol = new DataGridTextBoxColumn();
dgPanicCol.HeaderText="Panic Data";
dgPanicCol.MappingName="Panic Data";
dgPanicCol.ReadOnly = true;

dgTxtBox = (DataGridTextBox) dgPanicCol.TextBox;
dgTxtBox.DoubleClick +=new EventHandler(dgTxtBox_DoubleClick);

Raj
 
hi friends,
I am working on datagrid in windows application, I need to
retrieve row from datagrid whenever I double clicked on it . so plz suggest
me how to proceed.

Regards
Sai.
 
Back
Top