i have devexpress datagrid in wpf apllication , contain 2 columns problem want particular clicked cell value in devexpress datagrid.
please me!
you can identify clicked column , row handle using hit-information returned gridview.calchitinfo() method:
gridhitinfo hitinfo = gridview1.calchitinfo(new point(e.x, e.y)); if(hitinfo.inrowcell){ object value = view.getrowcellvalue(hitinfo.rowhandle, hitinfo.column); //... } related help-article: hit information overview
related how-to: identify grid's element located under mouse cursor
Comments
Post a Comment