获取鼠标光标所在的行号

本文关键字:鼠标 光标 获取 | 更新日期: 2023-09-27 18:19:22

我希望获得鼠标光标在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.?
  }
也许我做这件事的方式是不可能的,但如果不能用其他方式做,我会感到惊讶。

谢谢

获取鼠标光标所在的行号

如果您访问鼠标所在的DataGridRow对象,那么您可以使用DataGridRow.GetIndex方法找到它的行索引:

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方法实际上是我使用的扩展方法:

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);
}

好的,我在这里找到了答案…

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) !!!!!!!!!!!!!!!!!
         }
    • 现在您可以使用row获取您自己的对象。项,然后,它在正确的行索引

所以所有关于使用鼠标原始源和向上的VisualTree,直到你得到正确的元素。

这对我很有效。

<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);
}

在我的一个应用程序中,我需要鼠标下方的DataGridRow来突出显示它。每个Cell都有一个DataTemplate

<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);
    }

希望有所帮助