我看了看,但我似乎无法找到解决这个问题的方法,所以我决定不妨问一下。
我正在关注this tutorial以帮助我使用WinForms在C#中创建一个地址簿。我已经创建了GUI,以及将它们组合在一起的“Person”类,我可以添加条目就好了。但是,当我编写代码以在它们之间切换时,按照教程中的内容,我收到此错误消息:
“object”不包含“Index”的定义,并且没有可以找到接受“object”类型的第一个参数的扩展方法“Index”(您是否缺少using指令或程序集引用?)
这是我的“SelectedIndexChanged”事件的代码。它与教程略有不同:我将“entryList.SelectedItems [0] .Index”放入预定义的int“i”中以保存写出8次,我的GUI相当不同,我定义了列表出于各种原因,Person对象位于单独的“Methods”类中。基本原理是一样的,所以我不明白为什么我的标记错误而他的没有。
private void entryList_SelectedIndexChanged(object sender, EventArgs e)
{ //set the text boxes to display the data in the selected entry
if (entryList.SelectedItems.Count > 0)
{
i = entryList.SelectedItems[0].Index;
nameText.Text = Methods.list[i].Name;
birthDay.Text = Methods.list[i].BirthDay.ToString();
birthMonth.Text = Methods.list[i].BirthMonth.ToString();
birthYear.Text = Methods.list[i].BirthYear.ToString();
numberText1.Text = Methods.list[i].NumberPart1;
numberText2.Text = Methods.list[i].NumberPart2;
addressText.Text = Methods.list[i].Address;
eMailText.Text = Methods.list[i].Email;
}
}
这是标记错误的“.Index”部分,我不知道为什么。那么,我哪里出错了?
编辑:为了澄清,我尝试了各种解决方法,例如
i = entryList.SelectedIndex;
但那些仍然不允许我在ListBox中的项目之间切换,它会一直显示我输入的最后一个项目。
编辑2:按照Rotem的要求提供更多信息。这是添加条目的代码,这将它添加到Person对象列表中,由于各种原因(因此,Methods.list)保存在单独的Methods类中。它还将人名添加到ListBox列表中,理论上,我希望能够通过单击ListBox中的名称来切换查看不同的条目,这是第一个代码段的名称。除非它不起作用。
private void newEntry_Click(object sender, EventArgs e)
{ //creates a new entry, displaying its data in the appropriate fields, and then saves it
Person p = new Person(nameText.Text, Convert.ToByte(birthDay.Text), Convert.ToByte(birthMonth.Text), Convert.ToInt16(birthYear.Text), numberText1.Text, numberText2.Text, addressText.Text, eMailText.Text);
Methods.list.Add(p);
entryList.Items.Add(p.Name);
nameText.Text = " ";
birthDay.Text = "DD";
birthMonth.Text = "MM";
birthYear.Text = "YYYY";
numberText1.Text = " ";
numberText2.Text = " ";
addressText.Text = " ";
eMailText.Text = " ";
}
编辑3:根据要求,这是“人”类的代码:
class Person
{
private static string name;
private static byte birthDay;
private static byte birthMonth;
private static short birthYear;
private static string numberPart1;
private static string numberPart2;
private static string address;
private static string email;
//encapsulation goes here...
public Person(string a, byte b, byte c, short d, string e, string f, string g, string h)
{
name = a;
if (b <= 31 && c <= 12 && d < DateTime.Now.Year)
{
birthDay = b;
birthMonth = c;
birthYear = d;
}
else
throw new ArgumentException("Invalid date of birth");
numberPart1 = e;
numberPart2 = f;
address = g;
email = h;
}
}
答案 0 :(得分:1)
entryList
中的是ListBox
,那么它的项只有object
s,它们不是跟踪索引的一些数据结构(例如,{{1}具有ListView
属性的项目。
相反,您可以使用Index
的{{3}}属性。
ListBox
答案 1 :(得分:0)
怎么样:
i = entryList.SelectedIndex
这应该从列表框中获取索引,只要它与您的列表匹配就可以了。