日期:2014-05-17 浏览次数:20775 次
ComboBox cbb = new ComboBox();
cbb.Items.AddRange(new String[] { "Beijing", "Shanghai", "Guangzhou", "Wuhan", "Shenzhen" });
DataGridViewCell dgvc = this.dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex];
Rectangle rect = this.dataGridView1.GetCellDisplayRectangle(dgvc.ColumnIndex, dgvc.RowIndex, true);
//cbb.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
cbb.Location = rect.Location;
cbb.Size = rect.Size;
this.Controls.Add(cbb);
cbb.Visible = true;