I'm creating an event from a button in which it creates a Product object and adds it to a list of Products and using this list to populate the DataSource of a dataGridView, but the DataGridView always keeps appearing a single product.
private void button3_Click(object sender, EventArgs e)
{
Produto produto = new Produto();
venda.ItensVenda.Add(produto);
dataGridView1.DataSource = venda.ItensVenda;
dataGridView1.Refresh();
}