8

当使用鼠标滚轮和这个控件时,我们想覆盖 DataGridView 的默认行为。默认情况下,DataGridView 滚动的行数等于 SystemInformation.MouseWheelScrollLines 设置。我们想做的是一次只滚动一个项目。

(我们在 DataGridView 中显示图像,图像有点大。由于这种滚动三行(典型的系统设置)太多,经常导致用户滚动到他们甚至看不到的项目。)

我已经尝试了几件事,到目前为止还没有取得太大的成功。以下是我遇到的一些问题:

  1. 您可以订阅 MouseWheel 事件,但无法将事件标记为已处理并做我自己的事情。

  2. 您可以覆盖 OnMouseWheel 但这似乎永远不会被调用。

  3. 您可能可以在基本滚动代码中更正此问题,但这听起来很麻烦,因为其他类型的滚动(例如使用键盘)通过相同的管道进行。

有人有好的建议吗?

这是最终代码,使用给出的精彩答案:

    /// <summary>
    /// Handle the mouse wheel manually due to the fact that we display
    /// images, which don't work well when you scroll by more than one
    /// item at a time.
    /// </summary>
    /// 
    /// <param name="sender">
    /// sender
    /// </param>
    /// <param name="e">
    /// the mouse event
    /// </param>
    private void mImageDataGrid_MouseWheel(object sender, MouseEventArgs e)
    {
        // Hack alert!  Through reflection, we know that the passed
        // in event argument is actually a handled mouse event argument,
        // allowing us to handle this event ourselves.
        // See http://tinyurl.com/54o7lc for more info.
        HandledMouseEventArgs handledE = (HandledMouseEventArgs) e;
        handledE.Handled = true;

        // Do the scrolling manually.  Move just one row at a time.
        int rowIndex = mImageDataGrid.FirstDisplayedScrollingRowIndex;
        mImageDataGrid.FirstDisplayedScrollingRowIndex =
            e.Delta < 0 ?
                Math.Min(rowIndex + 1, mImageDataGrid.RowCount - 1):
                Math.Max(rowIndex - 1, 0);
    }
4

4 回答 4

4

我只是做了一些自己的搜索和测试。我使用Reflector进行调查并发现了一些事情。该MouseWheel事件提供了一个MouseEventArgs参数,但OnMouseWheel()覆盖DataGridView将其强制转换为. 这在处理事件时也有效。确实被调用了,它在它使用的覆盖中。HandledMouseEventArgsMouseWheelOnMouseWheel()DataGridViewSystemInformation.MouseWheelScrollLines

所以:

  1. 您确实可以处理MouseWheel事件,转换MouseEventArgsHandledMouseEventArgs和 set Handled = true,然后做您想做的事。

  2. 子类化DataGridView,覆盖OnMouseWheel()自己,并尝试重新创建我在Reflector中阅读的所有代码,除了替换SystemInformation.MouseWheelScrollLines1.

后者将是一个巨大的痛苦,因为它使用了许多私有变量(包括对ScrollBars 的引用),并且您必须用自己的变量替换一些变量并使用反射获取/设置其他变量。

于 2008-09-25T19:48:21.187 回答
1

我会将 DataGridView 子类化为我自己的自定义控件(您知道,添加一个新的 Windows 窗体 --> 自定义控件文件并将基类从 Control 更改为 DataGridView)。

public partial class MyDataGridView : DataGridView

然后重写 WndProc 方法并替换如下:

protected override void WndProc(ref Message m)
{
    if (m.Msg == 0x20a)
    {
        int wheelDelta = ((int)m.WParam) >> 16;

        // 120 = UP 1 tick
        // -120 = DOWN 1 tick

        this.FirstDisplayedScrollingRowIndex -= (wheelDelta / 120);
    }
    else
    {
        base.WndProc(ref m);
    }
}

当然,您将检查您没有将 FirstDisplayedScrollingRowIndex 设置为网格范围之外的数字等。但这很好用!

理查德

于 2008-09-25T19:39:24.530 回答
1

覆盖 OnMouseWheel 而不是调用 base.OnMouseWheel 应该可以工作。某些滚轮鼠标具有特殊设置,您可能需要自行设置才能使其正常工作。看到这篇文章http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=126295&SiteID=1

于 2008-09-25T19:42:21.390 回答
1

更新:由于我现在了解到DataGridView有一个MouseWheel事件,所以我添加了第二个更简单的覆盖。

实现此目的的一种方法是子类化DataGridView并覆盖以添加对消息WndProc的特殊处理。WM_MOUSEWHEEL

此示例捕获鼠标滚轮移动并将其替换为对SendKeys.Send.

(这与仅滚动有点不同,因为它还选择了 . 的下一行/上一行DataGridView。但它有效。)

public class MyDataGridView : DataGridView
{
    private const uint WM_MOUSEWHEEL = 0x20a;

    protected override void WndProc(ref Message m)
    {
        if (m.Msg == WM_MOUSEWHEEL)
        {
            var wheelDelta = ((int)m.WParam) >> 16;

            if (wheelDelta < 0)
            {
                SendKeys.Send("{DOWN}");
            }

            if (wheelDelta > 0)
            {
                SendKeys.Send("{UP}");
            }

            return;
        }

        base.WndProc(ref m);
    }
}

第二次采取(与上述相同的警告):

public class MyDataGridView : DataGridView
{
    protected override void OnMouseWheel(MouseEventArgs e)
    {
        if (e.Delta < 0)
            SendKeys.Send("{DOWN}");
        else
            SendKeys.Send("{UP}");
    }
}
于 2008-09-25T20:51:05.373 回答