在 C# 中,如何使 datagridview 的左侧边框消失?
我想让 datagridview 对象的左边框消失。有什么建议吗?
I wanna make the left hand border of the datagridview object disappear. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果是 WinForms,则该属性称为
RowHeadersVisible
。将其设置为 false,您将看不到左侧边框。In case it is WinForms the property is called
RowHeadersVisible
. Set that to false and you won't see the left hand side border.如果您谈论的是行标题,请在属性窗格中将
RowHeadersVisible
设置为False
。If you 're talking about the row headers, in the properties pane set
RowHeadersVisible
toFalse
.