c#如何删除和编辑列表框中选定的信息?

时间:2015-09-26 11:09:48

标签: c# windows forms listbox

    string Path = @"C:\Users\Alexander\Desktop\Adressbok\Adressbok.txt";

    List<string> sökhistorik;

    //Lista
    List<Person> Personer = new List<Person>();

    //instans
    Person p1 = new Person();

    public Form1()
    {
        InitializeComponent();
    }
    private void updateUI()
    {
        lstBox.DataSource = null;
        lstBox.DataSource = Personer;
    }
    private void btnSpara_Click(object sender, EventArgs e)
    {
        p1.Namn = tbxNamn.Text;
        p1.Gatuadress = tbxGatuadress.Text;
        p1.Postnummer = tbxPostnummer.Text;
        p1.Postort = tbxPostort.Text;
        p1.Telefonnummer = tbxTelefonnummer.Text;
        p1.Epost = tbxEpost.Text;

        Personer.Add(p1);

        updateUI();

        SaveToFile();

        tbxNamn.Text = "";
        tbxGatuadress.Text = "";
        tbxPostnummer.Text = "";
        tbxPostort.Text = "";
        tbxTelefonnummer.Text = "";
        tbxEpost.Text = "";
    }

我想从列表框中编辑所选项目,然后编辑信息并再次保存,然后创建删除按钮并删除整个信息。我该怎么做。我正在使用Windows表单c#。

1 个答案:

答案 0 :(得分:1)

为什么不使用BindingList而不是List? BindingList将根据您的来源自动更新您的UI。

假设Person有一个ToString(),

// Bind BindingList to Listbox
public class Form1 {
    BindingList<Person> personer = new BindingList<Person>();
    public Form1() {
        InitializeComponent();
        listBox1.DataSource = personer;
    }


// Remove on button click
private void button1_Click(object sender, EventArgs e)
{
    if (listBox1.SelectedIndex > -1)
    {
        //This automatically updates your listBox
        personer.RemoveAt(listBox1.SelectedIndex);
    }
}

// Update on Button click
private void button2_Click(object sender, EventArgs e)
{
    if (listBox1.SelectedIndex > -1)
    {
        Person p = personer[listBox1.SelectedIndex];
        //Update person here
    }

}