我已经检查了其他帖子,但仍然无法修复我的问题:我有两种形式:
- 创建客户的一种(可以有多个电话、地址和汽车)
- 应显示每个客户信息的主窗体。
首先,是否有可能在每一行都有一个客户,以及每个客户信息的三个组合(电话、地址和汽车)?
例如:
我有两个客户,John 和 Jack,我希望行显示如下:
0 - John - John.Phones - John.Addresses - John.Cars
1 - Jack - Jack.Phones - Jack.Addresses - Jack.Cars
另外,我不知道我应该将什么作为组合框的参数传递给我的行,我应该传递数据源、项目还是组合本身?无论我为组合框传递什么,我都会得到:
System.ArgumentException: DatagridViewRowComboBoxCell value is not valid
这是实际的代码。
private DataGridViewRow BuildRow(Cliente cliente)
{
DataGridViewRow row = new DataGridViewRow();
DataGridViewComboBoxCell Autos = new DataGridViewComboBoxCell();
Autos.DataSource = cliente.Autos;
Autos.ValueMember = cliente.Autos[0].ToString();
row.CreateCells(DGCliente, cliente.Codigo.ToString(), cliente.Nombre, Autos);
row.Tag = cliente;
DGCliente.Rows.Add(row);
return row;
}
客户端类代码:(西班牙语)
public class Cliente
{
public String Nombre { get; set; }
public Int32 Codigo { get; set; }
public List<Auto> Autos { get; set; }
public List<Direccion> Direcciones { get; set; }
public List<Telefono> Telefonos { get; set; }
public Cliente()
{
this.Direcciones = new List<Direccion>();
this.Telefonos = new List<Telefono>();
this.Autos = new List<Auto>();
}
public Cliente(String Nombre , Int32 Codigo)
{
this.Nombre = Nombre;
this.Codigo = Codigo;
this.Direcciones = new List<Direccion>();
this.Telefonos = new List<Telefono>();
this.Autos = new List<Auto>();
}
public void AgregarTelefono(bool esCelular, String numero, String area)
{
this.Telefonos.Add(new Telefono(esCelular, numero, area));
}
public void AgregarDireccion(string calle, string altura, string localidad, string provincia)
{
this.Direcciones.Add(new Direccion(calle, altura, localidad, provincia));
}
public void AgregarAuto(Auto auto)
{
this.Autos.Add(auto);
}
}