I got a Grid with controls such System.Windows.Controls.Image and Labels in each RowDefinition of my Grid. The problem is when I do the right click contextmenu it works and I ca
You can hit test for DataGridRow
, given mouse position & the Grid.
// Retrieve the coordinate of the mouse position.
Point pt = e.GetPosition((UIElement)sender);
DataGridRow row = null;
// Set up a callback to receive the hit test result enumeration.
VisualTreeHelper.HitTest(myGrid, null,
new HitTestResultCallback(res => {
row = res.VisualHit as DataGridRow;
return row != null ? HitTestResultBehavior.Stop :
HitTestResultBehavior.Continue;
}),
new PointHitTestParameters(pt));
http://msdn.microsoft.com/en-us/library/ms752097.aspx (Hit Testing in the Visual Layer)