两个滚动条 - 在 MouseMove 事件上启用第二个滚动条 - C#

发布于 2024-12-15 21:26:13 字数 154 浏览 4 评论 0原文

我在 win 表单中有一个数据网格,每个数据网格都有一个 V. 滚动条。现在,默认情况下,外部滚动条处于活动状态,要激活内部滚动条,我必须在数据网格内部单击。 我想要的是,当鼠标移到数据网格上时,数据网格的滚动应该处于活动状态,当我的鼠标位于数据网格区域之外时,表单的滚​​动应该处于活动状态。

I have a datagrid inside a win form and each has a V. Scroll bar. Now, by default the outer scroll bar is active and to activate the inner scroll, i have to click inside the datagrid.
What I want is when the mouse is moved over the datagrid, the datagrid's scroll should be active and when my mouse is outside datagrid area the form's scroll should be active.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

多彩岁月 2024-12-22 21:26:13

您可以在 MouseEnter 和 MouseLeave 上设置 DataGridView 的 ScrollBars 属性,如下所示

private void dataGridView1_MouseEnter(object sender, EventArgs e)
{
    DataGridView dataGridView = sender as DataGridView;
    if (dataGridView != null)
    {
        dataGridView.ScrollBars = ScrollBars.Both;
    }
}

private void dataGridView1_MouseLeave(object sender, EventArgs e)
{
    DataGridView dataGridView = sender as DataGridView;
    if (dataGridView != null)
    {
        dataGridView.ScrollBars = ScrollBars.None;
    }
}

您也可以在处理程序中使用 dataGridView 进行硬编码,因为您可能知道您想要哪个,但如果您需要在多个 DataGridView 上处理此问题,你可以用这个。

You can set the ScrollBars property of the DataGridView on MouseEnter and MouseLeave, like this

private void dataGridView1_MouseEnter(object sender, EventArgs e)
{
    DataGridView dataGridView = sender as DataGridView;
    if (dataGridView != null)
    {
        dataGridView.ScrollBars = ScrollBars.Both;
    }
}

private void dataGridView1_MouseLeave(object sender, EventArgs e)
{
    DataGridView dataGridView = sender as DataGridView;
    if (dataGridView != null)
    {
        dataGridView.ScrollBars = ScrollBars.None;
    }
}

You can also just hardcode using the dataGridView in the handler since you'll probably know which one you want, but in case you need to handle this on multiple DataGridViews, you can use this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文