可能重复:
在列表框中的消息框中显示信息
我正在编写一个程序,要求用户为他们的房子或公寓输入七个不同的参数。提交信息后,输入的地址将进入列表框。当用户单击单独的按钮时,七个参数应显示在消息框中。我已经有一个名为 DisplayInfo() 的方法,当它被调用时,它会在一列中显示信息,所以我只需要它的选定索引部分的帮助。
public virtual string DisplayInfo()
{
return string.Format("Property ID: {0}\nProperty Address: {1}\nYear Built: {2}\nNumber of Bedrooms: {3}\nSquare Footage: {4}\nPrice: {5}",
GetID(),
GetAddress(),
GetYearBuilt(),
GetBedrooms(),
GetSquareFootage(),
GetPrice());
}