DataGridView 滚动行为
我有一个 DataGridView,它有垂直和水平滚动条。
当我垂直滚动它时,不可能使任何行部分可见。换句话说: scrollbarPosition % rowHeigth == 0
始终。 但是当我水平滚动时,DataGridView 的行为不会这样。列可以部分可见。我怎样才能让它变得不可能呢?
I have a DataGridView which has vertical and horizontal scrollbars.
When I scroll it vertically it is not possible to make any of rows to be partially visible. In other words: scrollbarPosition % rowHeigth == 0
at all times.
But when i scroll horizontally DataGridView does not behave this way. Column can be partially visible. How can I make it impossible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DataGridView 并不是这样设计的。
这是完全不可能的,除非您重写控件的大部分内容。
大多数网格控件(包括 Excel、Access 和 Outlook)以及大多数(如果不是全部)第 3 方 .Net 网格都具有相同的限制。
DataGridView was not designed that way.
It's completely impossible, unless you rewrite substantial portions of the control.
Most grid controls, including Excel, Access, and Outlook, as well as most if not all 3rd-party .Net grids, have the same limitation.