1

我有以下代码:

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);

但是由于某些奇怪的原因,它在我调试时可以工作,但是如果我不逐行检查,它根本就不起作用。

4

3 回答 3

2

您必须使用ComboBox.TextComboBox.SelectedIndex

combox.SelectedIndex = combox.FindStringExact("yourItem");

或者

combox.Text = "yourIetmText";

注意:

ComboBox.FindStringExact Method可以帮助您找到与指定字符串完全匹配的项目索引。

于 2012-07-15T06:23:03.003 回答
1

试着放

n.CreateControl();

在 this.Controls.Add() 之前,然后放

n.SelectedItem = 
  n.Items
   .Cast<KeyValuePair<string, Nutriente>>()
   .SingleOrDefault(o => o.Key == x.Key);

调用 this.Controls.Add() 之后

于 2012-07-15T07:13:44.317 回答
0

请改用 comboBox1.SelectedText 来设置项目并在组合中显示为已编辑的文本

于 2012-07-15T06:30:21.910 回答