2

我有一个面板AutoScroll = true;

我可以使用滚动条滚动面板。

我还通过以下方式找到带有“鼠标”滚轮的鼠标滚轮“垂直滚动”:

void panelInner_MouseWheel(object sender, System.Windows.Forms.MouseEventArgs e)
{
    panelInner.Focus();
}

但是,我也想通过“鼠标滚轮+ shift”水平滚动。

我需要做什么才能发生这种情况?

4

1 回答 1

2

在您的设计器文件中,您需要手动添加 MouseWheel 事件委托。

this.panelInner.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.panelInner_MouseWheel);

然后,在您后面的代码中,您可以添加以下内容。

    private const int WM_SCROLL = 276; // Horizontal scroll 
    private const int SB_LINELEFT = 0; // Scrolls one cell left 
    private const int SB_LINERIGHT = 1; // Scrolls one line right

    [DllImport("user32.dll", CharSet = CharSet.Auto)]
    private static extern int SendMessage(IntPtr hWnd, int wMsg, IntPtr wParam, IntPtr lParam); 

    private void panelInner_MouseWheel(object sender, MouseEventArgs e)
    {
        if (ModifierKeys == Keys.Shift)
        {
            var direction = e.Delta > 0 ? SB_LINELEFT : SB_LINERIGHT;

            SendMessage(this.panelInner.Handle, WM_SCROLL, (IntPtr)direction, IntPtr.Zero);
        }
    }

参考:

  1. Shift + 鼠标滚轮水平滚动
  2. C#中的鼠标倾斜轮水平滚动
于 2012-10-23T16:19:30.097 回答