C#-DataGridView设置列不显示
Posted samrv
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#-DataGridView设置列不显示相关的知识,希望对你有一定的参考价值。
C#-DataGridView设置列不显示, 发现有小BUG,
Form1.Designer.cs文件中会把dataGridVIew1.Columns.AddRange() 部分的代码消失 .
例如: 设置UserID列不显示, 建议,直接在代码文件中在USERID属性代码段后面输入"this.UserID.Visible = false;" 代码,完整的 如代码段2所示 .
代码段1:
//
// dataGridView1
//
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[]
this.UserID,
this.UserName,
this.Password,
this.DeptID,
this.DeptCode,
this.DeptName);
this.dataGridView1.Location = new System.Drawing.Point(16, 30);
this.dataGridView1.Name = "dataGridView1";
代码段2:
//
// UserID
//
this.UserID.DataPropertyName = "UserID";
this.UserID.HeaderText = "UserID";
this.UserID.Name = "UserID";
this.UserID.Visible = false;
以上是关于C#-DataGridView设置列不显示的主要内容,如果未能解决你的问题,请参考以下文章
DataGridView 与组合框列显示 System.Data.DataRowView 而不是 DisplayMember
C#Windowfrom datagridview控件内容怎么在单元格里自动换行全显示出来?