Обнуление dataGridView1.Rows[y].Cells[x].Value - C#

Узнай цену своей работы

Формулировка задачи:

Помогите пожалуйста, как обнулить данные в dataGridView1.Rows[y].Cells[x].Value ? (чтобы нажав на кнопку выполнилось это действие) вот мой код, но надо доработать :
 private void button7_Click(object sender, EventArgs e)
        {
            int x=0;
            int y=0;
            for (int i = 0; i < dataGridView1.RowCount; i++)
             for (int j = 0; j < dataGridView1.ColumnCount; j++)
               {
                   if (int.Parse(dataGridView1[x, y].Value.ToString) == null)
                       // дальше не знаю, но надо как то обнулить 
               }
        }

Решение задачи: «Обнуление dataGridView1.Rows[y].Cells[x].Value»

textual
Листинг программы
            for (int i = 0; i < dataGridView1.RowCount; i++)
             for (int j = 0; j < dataGridView1.ColumnCount; j++)
               {
                   if (dataGridView1[j, i].Value != null)
                       dataGridView1[j, i].Value = null;
 
                   if (dataGridView1[j, i].Style.BackColor != Color.Black)
                       dataGridView1[j, i].Style.BackColor = dataGridView1.DefaultCellStyle.BackColor;
 
               }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

9   голосов , оценка 3.667 из 5