Как я могу получить значение ячейки DataGridView в MessageBox на С#?
Как получить значение ячейки DataGridView в окне сообщений?
Ответ 1
Вы можете использовать DataGridViewCell.Value Свойство для извлечения значения, хранящегося в конкретной ячейке.
Итак, чтобы получить значение "первой" выбранной ячейки и отобразить в MessageBox, вы можете:
MessageBox.Show(dataGridView1.SelectedCells[0].Value.ToString());
Выше, вероятно, не совсем то, что вам нужно делать. Если вы предоставите более подробную информацию, мы сможем предоставить лучшую помощь.
Ответ 2
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value != null)
{
MessageBox.Show(dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString());
}
}
Ответ 3
MessageBox.Show(" Value at 0,0" + DataGridView1.Rows[0].Cells[0].Value );
Ответ 4
private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
MessageBox.Show(Convert.ToString(dataGridView1.CurrentCell.Value));
}
немного поздно, но надеюсь, что это поможет
Ответ 5
try
{
for (int rows = 0; rows < dataGridView1.Rows.Count; rows++)
{
for (int col = 0; col < dataGridView1.Rows[rows].Cells.Count; col++)
{
s1 = dataGridView1.Rows[0].Cells[0].Value.ToString();
label20.Text = s1;
}
}
}
catch (Exception ex)
{
MessageBox.Show("try again"+ex);
}
Ответ 6
Я добавил это к Button datagrid, чтобы получить значения ячеек в строке, которую пользователь нажимает:
string DGCell = dataGridView1.Rows[e.RowIndex].Cells[X].Value.ToString();
где X - ячейка, которую вы хотите проверить. Количество столбцов Datagrid начинается с 1 не 0 в моем случае. Не уверен, что это значение по умолчанию для datagrid или потому, что я использую SQL для заполнения информации.
Ответ 7
Суммировать все ячейки
double X=0;
if (datagrid.Rows.Count-1 > 0)
{
for(int i = 0; i < datagrid.Rows.Count-1; i++)
{
for(int j = 0; j < datagrid.Rows.Count-1; j++)
{
X+=Convert.ToDouble(datagrid.Rows[i].Cells[j].Value.ToString());
}
}
}
Ответ 8
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
int rowIndex = e.RowIndex; // Get the order of the current row
DataGridViewRow row = dataGridView1.Rows[rowIndex];//Store the value of the current row in a variable
MessageBox.Show(row.Cells[rowIndex].Value.ToString());//show message for current row
}