You can set the value of the cell in question, and this will lead to an update of the text.
, UseColumnTextForButtonValue false:
dataGridView[0,0].Value = "Processed";
- .
, , , , .
RunWorkerCompleted, . DoWork :
void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{
}
RunWorkerCompleted :
void backgroundWorker1_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
dataGridView1[0,0].Value = "Processed";
}