How to get DevExpress GridControl cell single click event in wpf?

Jay Shukla

I am creating a demo project in wpf application I am also using DevExpress GridControl in this application my problem is that I want get the cell value in on click particular cell.

Fares

I think you should look at the HitInfo class.

Try this link.

GridHitInfo hitInfo = gridView1.CalcHitInfo(new Point(e.X, e.Y));
if(hitInfo.InRowCell){
    object value = View.GetRowCellValue(hitInfo.RowHandle, hitInfo.Column);
    //...
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

DevExpress WPF GridControl: How to set a default sort in XAML

From Dev

How to define tooltip for column header of gridcontrol in devexpress wpf

From Dev

how to get cell click event in kendo grid

From Dev

Databinding within Cell templated Devexpress:GridControl not working

From Dev

how do i convert datagridview cell click event to DevExpress Grid Control

From Dev

Change FontWeight of specific row of DevExpress GridControl in WPF

From Dev

DevExpress GridControl Double_Click Storing Data

From Dev

Devexpress Gridcontrol Sum of row cell values in specific Column cell

From Dev

How to get a value of a cell in datagridview devexpress

From Dev

how to add a custom summaryitem to devexpress gridcontrol

From Dev

How to fill a DevExpress GridControl with string and date fields?

From Dev

how to add a custom summaryitem to devexpress gridcontrol

From Dev

How to add WPF treeView Node Click event to get the node value

From Dev

How to add WPF treeView Node Click event to get the node value

From Dev

DevExpress GridControl shows rows but does not show cell values

From Dev

how to bind data to gridcontrol in WPF

From Dev

How to set click Event to all cells in a Row ? Gridview Winforms Devexpress

From Dev

TreeViewItem do not get highlighted on Single click WPF

From Dev

WPF click event handler get textblock text

From Dev

WPF click event handler get textblock text

From Dev

DataGrid catch cell value changed event with a single click on UpdateSourceTrigger = SourceUpdated

From Dev

Image inside a GridControl -Devexpress

From Dev

Image inside a GridControl -Devexpress

From Dev

devexpress gridcontrol multiselect

From Dev

How to add a click event to a tableview cell in javafx

From Dev

How to add click event to table cell in this code?

From Dev

Jqgrid how to write cell click event

From Dev

How to add click event to table cell in this code?

From Dev

DevExpress Get Selected Cell DataGridView

Related Related

  1. 1

    DevExpress WPF GridControl: How to set a default sort in XAML

  2. 2

    How to define tooltip for column header of gridcontrol in devexpress wpf

  3. 3

    how to get cell click event in kendo grid

  4. 4

    Databinding within Cell templated Devexpress:GridControl not working

  5. 5

    how do i convert datagridview cell click event to DevExpress Grid Control

  6. 6

    Change FontWeight of specific row of DevExpress GridControl in WPF

  7. 7

    DevExpress GridControl Double_Click Storing Data

  8. 8

    Devexpress Gridcontrol Sum of row cell values in specific Column cell

  9. 9

    How to get a value of a cell in datagridview devexpress

  10. 10

    how to add a custom summaryitem to devexpress gridcontrol

  11. 11

    How to fill a DevExpress GridControl with string and date fields?

  12. 12

    how to add a custom summaryitem to devexpress gridcontrol

  13. 13

    How to add WPF treeView Node Click event to get the node value

  14. 14

    How to add WPF treeView Node Click event to get the node value

  15. 15

    DevExpress GridControl shows rows but does not show cell values

  16. 16

    how to bind data to gridcontrol in WPF

  17. 17

    How to set click Event to all cells in a Row ? Gridview Winforms Devexpress

  18. 18

    TreeViewItem do not get highlighted on Single click WPF

  19. 19

    WPF click event handler get textblock text

  20. 20

    WPF click event handler get textblock text

  21. 21

    DataGrid catch cell value changed event with a single click on UpdateSourceTrigger = SourceUpdated

  22. 22

    Image inside a GridControl -Devexpress

  23. 23

    Image inside a GridControl -Devexpress

  24. 24

    devexpress gridcontrol multiselect

  25. 25

    How to add a click event to a tableview cell in javafx

  26. 26

    How to add click event to table cell in this code?

  27. 27

    Jqgrid how to write cell click event

  28. 28

    How to add click event to table cell in this code?

  29. 29

    DevExpress Get Selected Cell DataGridView

HotTag

Archive