我之前已经完成了这项工作并且完全正常工作但是我不记得是怎么做的
我的商品类背后有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);
}
我希望文本框能够反映所选索引背后的项目数据。这怎么可能。我记得在我不记得我用过的方法之前就已经做过了。
答案 0 :(得分:2)
将selectedindexchanged事件添加到列表框中,然后您可以将selectedItem强制转换为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;
}
如果您需要更新列表框中的项目,最好在ListBox Item
上实施INotifyPropertyChanged
答案 1 :(得分: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;
}
接近最后一个答案
答案 2 :(得分:0)
您可以使用SelectedItem
var selection = itemListBox.SelectedItem as Item;
if (selection != null)
{
textboxName.Text = selection.Name;
textboxPrice.Text = selection.Price;
textboxUrl.Text = selection.Url;
}