Home › Forums › WinForms controls › Xceed Grid for WinForms › Double Click Event › Reply To: Double Click Event
I am also having same problem. Following are the Tommy’s code which I converted to VB.NET:
Dim cell As Xceed.Grid.Cell
For Each cell In <u>Row.Cells</u>
cell.DoubleClick = New EventHandler(CellDoubleClick)
Next
Private Sub CellDoubleClick(ByVal sender As Object, ByVal e As EventArgs)
Dim row As Xceed.Grid.CellRow = (sender)
‘as Xceed.Grid.Cell.ParentRow
End Sub
There is a problem in the underlined code. how can I refer the cells here?
Imported from legacy forums. Posted by DOS (had 307 views)