Re: Add values to DataGridViewRow "manually" -> Rows are empty



I found the solution for myself.

DataGridViewRow row = new DataGridViewRow();
row.CreateCells(this.dataGridViewLogger, new object[] { "asdf",
"dfsd", "sdf" });
this.dataGridViewLogger.Rows.Add(row2);

.