How to add textbox to dataGridViev.Rows[i].Cells[i] in C# Windows Forms?

  • Thread starter Thread starter barisburakbalci
  • Start date Start date
B

barisburakbalci

Guest
It was very simple in C# asp.net with gridView.Rows.Cells.Controls.Add(textboxname);

But there is no .Controls in C# Windows Forms Cells. Ive tried to use DataGridViewTextBoxCell type but it is not an exactly TextBox. I need to put my own textbox into a cell. How do I do?

Continue reading...
 
Back
Top