我有以下代码:
public partial class ModificarAlimento : Form
{
private Alimento alim;
private Dictionary<string, Nutriente> nutrientes;
public ModificarAlimento(Alimento a, Dictionary<string, Nutriente> nut)
{
InitializeComponent();
this.nutrientes = nut;
alim = a;
int i = 0;
foreach (KeyValuePair<string, CantidadNutrientes> x in alim.Nutrientes)
{
ComboBox n = new ComboBox();
n.DropDownStyle = ComboBoxStyle.DropDownList;
n.Location = new Point(12, 25 * (i + 1) + 80);
n.DataSource = new BindingSource(nutrientes, null);
n.DisplayMember = "Key";
n.ValueMember = "Value";
TextBox cNuts = new TextBox();
cNuts.Location = new Point(150, 25 * (i + 1) + 80);
cNuts.Size = new Size(50, cNuts.Size.Height);
cNuts.Text = x.Value.Cantidad.ToString();
this.Controls.Add(n);
this.Controls.Add(cNuts);
i++;
n.SelectedValue = x.Value.Nutriente;
}
}
private void ModificarAlimento_Load(object sender, EventArgs e)
{
}
}
现在。问题在这里:
n.SelectedValue = x.Value.Nutriente;
每个Alimento
(Food) 都有一个字典集CantidadNutrientes
,它存储一个双精度值和一个Nutriente
(Nutrient),它又存储一个名称。所以,打电话
x.Value.Nutriente
将检索存储在 x 中的 CantidadNutrientes 中的 Nutriente。
为什么这不起作用?任何帮助表示赞赏。
编辑:我也在尝试这个
n.SelectedIndex = n.FindStringExact(x.Key);
//and
n.SelectedValue = n.FindStringExact(x.Value.Nutriente.Nombre);
但是由于某些奇怪的原因,它在我调试时可以工作,但是如果我不逐行检查,它根本就不起作用。