DataGridView 和滚动位置的问题
我在面板中有一个 DataGridView 控件。面板的大小是固定的,并且启用了自动滚动。问题是,完成编辑单元格(通过按 Enter 或单击另一个单元格)后,面板的两个滚动(水平和垂直都重置为开始位置)。这是非常不方便的。如何修复?
I have a DataGridView control inside the Panel. The size of the panel is fixed and AutoScroll is enabled. The problem is that after finishing editing a cell (by pressing Enter or clicking on another cell) the both scrolls of the panel (horizontal and vertical are reseted to start position). This is very inconvenient. How it can be fixed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么在Panel中使用DataGridView? DataGridView 有自己的滚动条。
如果必须在面板中使用它,请将 AutoScroll 设置为禁用并将 DataGridView 停靠在其中。
Why you using DataGridView in Panel? DataGridView have own scrollbars.
If you must use it in Panel, set AutoScroll to disabled and dock DataGridView inside.