I have a simple datagridview on my form. I added a 2 columns -- one of a button type and the other of text type. I am trying to add some rows just as a test but I'm not seeing them.
Below is the code. It must be something simple but what do I need to do see my new rows?
private void Form1_Load(object sender, EventArgs e)
{
dataGridView1.Rows.Clear();
DataGridViewRow newRow = new DataGridViewRow();
Button button = new Button();
button.Name = "BUTTON";
button.Text="BUTTON";
newRow.SetValues(button, "TEST");
dataGridView1.Rows.Add(newRow);
}
