我希望在DataGrid中获取鼠标光标所在的行号(所以基本上是在MouseEnter事件上)所以我可以得到ItemSource绑定的DataGridRow项目,
我对MouseEvent的XAML是......
<DataGridTextColumn.ElementStyle>
<Style TargetType="{x:Type TextBlock}">
<EventSetter Event="MouseEnter" Handler="Event"></EventSetter>
<Setter Property="ToolTip" Value="{Binding Property}" />
</Style>
</DataGridTextColumn.ElementStyle>
活动本身......
private void Event(object sender, MouseEventArgs e)
{
// I have the DataGrid object itself.
m_DataGrid.?
}
也许我不可能这样做,但如果不能以某种方式做到,我会感到惊讶。
谢谢
答案 0 :(得分:8)
如果您访问鼠标悬停的DataGridRow
对象,则可以使用DataGridRow.GetIndex
method找到其行索引:
private void Event(object sender, MouseEventArgs e)
{
HitTestResult hitTestResult =
VisualTreeHelper.HitTest(m_DataGrid, e.GetPosition(m_DataGrid));
DataGridRow dataGridRow = hitTestResult.VisualHit.GetParentOfType<DataGridRow>();
int index = dataGridRow.GetIndex();
}
GetParentOfType
方法实际上是我使用的extension method:
public static T GetParentOfType<T>(this DependencyObject element) where T : DependencyObject
{
Type type = typeof(T);
if (element == null) return null;
DependencyObject parent = VisualTreeHelper.GetParent(element);
if (parent == null && ((FrameworkElement)element).Parent is DependencyObject) parent = ((FrameworkElement)element).Parent;
if (parent == null) return null;
else if (parent.GetType() == type || parent.GetType().IsSubclassOf(type)) return parent as T;
return GetParentOfType<T>(parent);
}
答案 1 :(得分:1)
这对我有用。
<DataGrid x:Name="dataGridView">
<DataGrid.Resources>
<Style TargetType="DataGridRow">
<EventSetter Event="MouseEnter" Handler="Row_MouseEnter"/>
</Style>
</DataGrid.Resources>
</DataGrid>
private void Row_MouseEnter(object sender, MouseEventArgs e)
{
int index = dataGridView.ItemContainerGenerator.IndexFromContainer((DataGridRow)sender);
}
答案 2 :(得分:0)
好的,我发现答案就在这里......
http://www.scottlogic.com/blog/2008/12/02/wpf-datagrid-detecting-clicked-cell-and-row.html
不要被文章标题搞糊涂。
对于我的解决方案,我基本上使用了
private void MouseOverEvent(object sender, MouseEventArgs e)
{
DependencyObject dep = (DependencyObject)e.OriginalSource;
// iteratively traverse the visual tree
while ((dep != null) &&
!(dep is DataGridCell) &&
!(dep is DataGridColumnHeader))
{
dep = VisualTreeHelper.GetParent(dep);
}
if (dep == null)
return;
if (dep is DataGridColumnHeader)
{
DataGridColumnHeader columnHeader = dep as DataGridColumnHeader;
// do something
}
if (dep is DataGridCell)
{
DataGridCell cell = dep as DataGridCell;
// navigate further up the tree
while ((dep != null) && !(dep is DataGridRow))
{
dep = VisualTreeHelper.GetParent(dep);
}
DataGridRow row = dep as DataGridRow;
//!!!!!!!!!!!!!* (Look below) !!!!!!!!!!!!!!!!!
}
所以关于使用鼠标原始源并向上移动VisualTree直到找到正确的元素。
答案 3 :(得分:0)
在我的一个应用程序中,我需要鼠标下方的DataGridRow突出显示它。 每个单元格都有一个数据模板
<DataTemplate x:Key="templateCenter">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="10 0 10 0">
<Image Source="{StaticResource Back}" Width="15" Height="15"/>
<Image Source="{StaticResource ListMove}" Width="35" Height="35"/>
<Image Source="{StaticResource Forward}" Width="15" Height="15"/>
</StackPanel>
</DataTemplate>
要获取DataGridCell的坐标,我在移动鼠标的同时正在寻找DataTemplate的图像。 如果找到了图像,则可以在VisualTree上移动以找到我的单元格,并在获得图像时找到它的坐标(行,列)。 这不是一个通用的代码-只是对我有用。
private void DragDrop_PreviewDragOver(object sender, DragEventArgs e)
{
if (e.OriginalSource.GetType() != typeof(Image))
{
return;
}
Point destination = GetCellLocation((DataGrid)sender, (StackPanel)((Image)e.OriginalSource).Parent);
}
还有这个
private Point GetCellLocation(DataGrid datagrid, StackPanel stackpanel)
{
DataGridCell cell = (DataGridCell)((ContentPresenter)stackpanel.TemplatedParent).Parent;
int column = cell.Column.DisplayIndex;
int row = ((DataGrid)datagrid).Items.IndexOf(stackpanel.DataContext);
return new Point(column, row);
}
希望有帮助