我以前做过这个并让它完全工作,但我不记得是怎么做的
我的项目类后面有 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);
}
我希望文本框反映所选索引后面的项目数据。这怎么可能。我记得以前做过,只是不记得我用了什么方法。