Ejemplo 1: c # datagridview borrar todas las filas
dataGridView1.Rows.Clear();
dataGridView1.Refresh();
Ejemplo 2: el borrado de filas de c # datagridview no funciona
// If "dataGridView1.Rows.Clear();" Not work Use the Following
do
{
foreach (DataGridViewRow row in dataGridViewError.Rows)
{
try
{
dataGridViewError.Rows.Remove(row);
}
catch (Exception) { }
}
} while (dat
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)