vb.net 隐藏左列 DataGridView
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/13745774/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-17 11:28:13 来源:igfitidea点击:
Hide left column DataGridView
提问by alvr
I'm creating a Visual Basic program in VS2010. I'm using a DataGridView to display a .csv, but I don't want to show the left column, it's ugly.
我正在 VS2010 中创建一个 Visual Basic 程序。我正在使用 DataGridView 来显示 .csv,但我不想显示左列,它很难看。
Is there any form to hide it?
有什么表格可以隐藏吗?


回答by THE DOCTOR
Try setting the RowHeadersVisibleproperty of your DataGridView to False.
尝试将RowHeadersVisibleDataGridView的属性设置为 False。

