Articles in this section
Category / Section

How to get the record when double-clicked on the row in WPF DataGrid (SfDataGrid)?

1 min read

Get the record when double clicked on the row

In SfDataGrid, you can get the record based on row and column index from mouse pointer position. The record can be accessed by using any mouse events (example MouseDoubleClick event). This event is triggered when you double click on the row. Within this event, you can access the Visual Container by using the GetVisualContainer()  extension method that exists in the Syncfusion.UI.Xaml.Grid.Helpers. The ResolveToRecordIndex is resolved by using current RowIndex and you can get the record index. From record index, you can get the record from dataGrid.View.

C#

//namespace
using Syncfusion.Data;
using Syncfusion.UI.Xaml.Grid;
using Syncfusion.UI.Xaml.Grid.Helpers;
this.dataGrid.MouseDoubleClick += dataGrid_MouseDoubleClick;
private void dataGrid_MouseDoubleClick(object sender, MouseButtonEventArgs e)
{
   var visualcontainer = this.dataGrid.GetVisualContainer();
   // get the row and column index based on the pointer position 
   var rowColumnIndex = visualcontainer.PointToCellRowColumnIndex(e.GetPosition(visualcontainer));
   if (rowColumnIndex.IsEmpty)
     return;
   var colindex = this.dataGrid.ResolveToGridVisibleColumnIndex(rowColumnIndex.ColumnIndex);
   if (colindex < 0 || colindex >= this.dataGrid.Columns.Count)
     return;
   var recordindex = this.dataGrid.ResolveToRecordIndex(rowColumnIndex.RowIndex);
   if (recordindex < 0)
     return;
   var recordentry = this.dataGrid.View.GroupDescriptions.Count == 0 ? this.dataGrid.View.Records[recordindex] : this.dataGrid.View.TopLevelGroup.DisplayElements[recordindex];
   //Returns if caption summary or group summary row encountered.
   if (!recordentry.IsRecords)
     return;
   var record = (recordentry as RecordEntry).Data;
   var value = record.GetType().GetProperty(dataGrid.Columns[colindex].MappingName).GetValue(record) ?? string.Empty;
   MessageBox.Show("Cell Value : " + value);
}

Refer the following screenshot to get the record from mouse pointer position.

Show the record when double clicked on the row

Samples:

WPF

WRT

SilverLight

UWP

Conclusion

I hope you enjoyed learning about how to get the record when double-clicked on the row in WPF DataGrid (SfDataGrid).

You can refer to our WPF DataGrid feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WPF DataGrid example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments
Please sign in to leave a comment
Access denied
Access denied