i am trying to set the text of all the buttons to "Set Text". I have made this, but it did not work....How would i do this?
foreach (DataGridViewButtonCell btn in dataGridView1.Rows)
{
btn.Text = "Set Text";
}
Also, how would i have an onclick event for those buttons?
