码迷,mamicode.com
首页 > Windows程序 > 详细

C#-DataGridView设置列不显示

时间:2019-06-26 13:40:23      阅读:828      评论:0      收藏:0      [点我收藏+]

标签:GridView   ble   sign   grid   his   data   height   column   tap   

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设置列不显示

标签:GridView   ble   sign   grid   his   data   height   column   tap   

原文地址:https://www.cnblogs.com/samrv/p/11089263.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!