基本上我有一个TextBox,一个buttom和一个ListBox。 我需要在Click buttom" Save"中实例化一个联系人。使用文本框中的正确值,并将实例化的联系人添加到ListBox。
到目前为止,我已经写了这段代码
public class Contact
{
public void Name(string Fristname, string Lastname, string Phonenumber)
{
this.FristName = Fristname;
this.LastName = Lastname;
this.PhoneNumber = Phonenumber;
}
private string FristName { get; set; }
private string LastName { get; set; }
private string PhoneNumber { get; set; }
}
答案 0 :(得分:-2)
你需要列表项exmp:
List<Contact> listContact = new List<Contact>();
Contact c1 =new Contact("hunter","andone","212444444444");
listContact.add(c1);
ListBox2.items.addrange(listContact);