获取最左侧列标题的宽度(但它实际上不是真正的列标题)
在 datagridview 中,最左边的列只是一个空白列,无法使用 dgv.Columns[columnNumber] 访问它。为了得到它,我正在做的是获取整个 datagridview 的宽度,并减去每个实际列的宽度。当存在垂直滚动条时会出现问题,因此我有代码可以解决这个问题(如果有的话)。
我觉得我在找到这个值时遇到了太多麻烦,并且想知道是否有更好的方法。
谢谢。
In a datagridview, the left most column is just a blank column, and it can't be accessed using dgv.Columns[columnNumber]. To get its with, what I'm doing is taking the width of the entire datagridview, and subtracting the width of each real column. There is a problem when there is a vertical scroll bar, so I have code that accounts for this if there is one.
I feel like I'm going through too much trouble to find this value and was wondering if there is a better way.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: