分类

链接

2011 年 11 月
 123456
78910111213
14151617181920
21222324252627
282930  

近期文章

热门标签

新人福利,免费薅羊毛

现在位置:    首页 > .NET > 正文
共享办公室出租
在datagridview里添加自定义控件列
.NET 暂无评论 阅读(4,026)

1、定义一个控件如:commbox

  1. //定义下拉列表框、隐藏控件、在datagridview中添加控件  
  2.        private ComboBox datacmb=new ComboBox();  
  3.       datacmb.Visible = false;  
  4.       this.dataGridView1.Controls.Add(datacmb);  

 

 

2、添加datagridview的CurrentCellChanged事件

  1.  
  2. private void dataGridView1_CurrentCellChanged(object sender, EventArgs e)  
  3.         {  
  4.             try  
  5.             {  
  6.                 if (this.dataGridView1.CurrentCell.ColumnIndex == 4)  
  7.                 {  
  8.                     Rectangle rec = this.dataGridView1.GetCellDisplayRectangle(dataGridView1.CurrentCell.ColumnIndex, dataGridView1.CurrentCell.RowIndex, false);  
  9.                     datacmb.Left = rec.Left;  
  10.                     datacmb.Top = rec.Top;  
  11.                     datacmb.Width = rec.Width;  
  12.                     datacmb.Height = rec.Height;  
  13.                     datacmb.Visible = true;                    
  14.                 }  
  15.                 else  
  16.                 {  
  17.                     datacmb.Visible = false;  
  18.                 }  
  19.             }  
  20.             catch  
  21.             {  
  22.                 //MessageBox.Show(ex.Message);  
  23.             }  
  24.         }  

 

============ 欢迎各位老板打赏~ ===========

本文版权归Bruce's Blog所有,转载引用请完整注明以下信息:
本文作者:Bruce
本文地址:在datagridview里添加自定义控件列 | Bruce's Blog

发表评论

留言无头像?