0

我以前做过这个并让它完全工作,但我不记得是怎么做的

我的项目类后面有 3 个属性

namespace Budgeting_Program
{    
    [Serializable]
    public class Item
    {
        public string Name { get; set; }
        public double Price { get; set; }
        public string @URL { get; set; }

        public Item(string Name, string Price, string @URL)
        {
            this.Name = Name;
            this.Price = Convert.ToDouble(Price);
            this.@URL = @URL;
        }

        public override string ToString()
        {
            return this.Name;
       }
    }
}

现在在我的编辑窗口中

public Edit(List<Item> i, int index)
{
    InitializeComponent();
    itemList = i;
    updateItemList();    
    itemListBox.SetSelected(index, true);                               
}

我希望文本框反映所选索引后面的项目数据。这怎么可能。我记得以前做过,只是不记得我用了什么方法。

4

3 回答 3

2

将 selectedindexchanged 事件添加到列表框中,然后您可以将 selectedItem 转换为 a Item,现在您可以访问属性并设置文本框的文本字段

private void listBox1_SelectedIndexChanged(object sender, System.EventArgs e)
{
   Item item = (Item)listBox1.SelectedItem;
   txtName.Text = item.Name;
   txtPrice.Text = item.Price;
   txtUrl.Text = item.Url;
}

如果您需要更新列表框中的项目,您最好实现INotifyPropertyChangedListBox Item

检查此代码项目文章

于 2013-09-19T02:55:28.850 回答
1
 Item found = itemList.Find(x => x.Name == (string)itemListBox.SelectedItem);
        if (found != null)
        {
            nameText.Text = found.Name;
            priceText.Text = Convert.ToString(found.Price);
            urlText.Text = found.URL;
        }

接近最后一个答案

于 2013-09-19T04:47:42.640 回答
0

您可以使用SelectedItem

var selection = itemListBox.SelectedItem as Item;
if (selection != null)
{
   textboxName.Text = selection.Name;
   textboxPrice.Text = selection.Price;
   textboxUrl.Text = selection.Url;
}
于 2013-09-19T02:45:18.863 回答