private void btn_ingresa_Click(object sender, System.EventArgs e)
{
//creo todas las filas necesarias
DataRow CR = customerList1.customer.NewRow();
DataRow BTAR = customerList1.BillToAddress.NewRow();
DataRow STAR = customerList1.ShipToAddress.NewRow();
//seteo valores iniciales
CR.ItemArray = new Object[] {"","","",""};
BTAR.ItemArray = new Object[] {"","","",00000};
STAR.ItemArray = new Object[] {"","","",00000};
//añado las filas a las tablas correspondientes
customerList1.Rows.Add(CR);
customerList1.BillToAddress.Rows.Add(BTAR);
customerList1.ShipToAddress.Rows.Add(STAR);
//le digo que muestre las nuevas filas
this.BindingContext[customerList1,"customer"].Position = this.BindingContext[customerList1,"customer"].Count;
positionChanged();
}