📜  c# datagridview 隐藏行选择器 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:52.956000             🧑  作者: Mango

代码示例2
//Set the RowHeadersVisible to False in the GridView (it's a property)
//Or By Code:
DatagridView.RowHeadersVisible = false;