作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到这个问题,DataGidView 中的最后一列太长,您需要使用滚动条才能显示该列的其余部分。
但是当我输入文本时,它不会在输入时自动滚动。
我想要的是在输入时自动滚动滚动条,这样用户在输入时就不必使用滚动条了。
这是图片:
最佳答案
查看以这种方式修改的单元格滚动行为是否可以在您的上下文中使用。
输入的Cell用DataGridView.GetCellDisplayRectangle()测量而且,如果它是 Right
位置超出DataGridView
边界,Cell
在电流设置为 FirstDisplayedCell 之前.
这应该确保单元格在输入时始终滚动到 View 中。
在编辑模式下,Cell 的边界会自动扩展。
此外,检查 cutOverflow
GetCellDisplayRectangle()
的参数考虑 Cell
时行为略有不同的方法边界范围。
Private Sub DataGridView1_CellEnter(sender As Object, e As DataGridViewCellEventArgs)
Dim cellArea = DataGridView1.GetCellDisplayRectangle(e.ColumnIndex, e.RowIndex, False)
If cellArea.Right > DataGridView1.Width AndAlso e.ColumnIndex > 0 Then
DataGridView1.FirstDisplayedCell = DataGridView1(e.ColumnIndex - 1, e.RowIndex)
End If
End Sub
关于.net - 键入时自动滚动 DataGridView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51604395/
我是一名优秀的程序员,十分优秀!