两个滚动条 - 在 MouseMove 事件上启用第二个滚动条 - C#
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 MouseEnter 和 MouseLeave 上设置 DataGridView 的 ScrollBars 属性,如下所示
您也可以在处理程序中使用 dataGridView 进行硬编码,因为您可能知道您想要哪个,但如果您需要在多个 DataGridView 上处理此问题,你可以用这个。
You can set the ScrollBars property of the DataGridView on MouseEnter and MouseLeave, like this
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.