C#Frozen ListBox(Windows窗体应用程序)

时间:2015-12-18 07:23:58

标签: c# listbox locked

我正在制作一个简单的BankingApp,它将客户及其帐户保存在两个单独的列表框中。在列表框相关帐户中选择一个客户时,将在第二个列表框中显示,用户应该能够添加,删除,更新客户和帐户。每当我尝试添加,删除或更新客户到列表框时,它都会锁定客户列表框中的一个项目。该应用程序不会崩溃只是冻结该特定项目。但我仍然可以选择其他客户并查看其信息,即使它已经锁定在另一个客户项目上。 我的代码中有什么错误?

我删除客户的问题:private void buttonTaBort_Click(对象发件人,EventArgs e)无效,我的按钮:private void buttonOkUppdatera_Click(对象发件人,EventArgs e)用于更新客户不起作用?

我知道我的代码有点混乱,我刚刚开始学习几周前:)尽我所能来解决问题。

/*trigger specific eventhandler when the event is idle for specific time*/
function debounce(fn, delay, self) {
    var timer = null;
    return function () {
        var context = self ? self : this, args = arguments;
        clearTimeout(timer);
        timer = setTimeout(function () {
        fn.apply(context, args);
        }, delay);
    };
}
//use in the following way
 $input.on('click',debounce(clickCallback,250));

我的客户类

[Serializable]
public partial class BankenAppen : Form
{
    List<Kund> KundLista = new List<Kund>();

    Kund aktuellKund = new Kund();

    Konto aktuelltKonto = new Konto();

    List<Konto> KontoLista = new List<Konto>();

    public BankenAppen()
    {

        InitializeComponent();

        FileStream fs = new FileStream("BankenAppenLista.bin", FileMode.OpenOrCreate, FileAccess.Read);
        BinaryFormatter bf = new BinaryFormatter();
        try
        {
            KundLista = (List<Kund>)bf.Deserialize(fs);
        }
        catch
        {
            MessageBox.Show("Tomt");
        }
        fs.Close();
        fs.Dispose();

        textBoxKontoNr.Enabled = false;
        textBoxSaldo.Enabled = false;
        textBoxRänta.Enabled = false;
        listBoxKunder.DataSource = KundLista;

    }

    public void EnableMetod()
    {
        textBoxFörNamn.Enabled = true;
        textBoxEfternamn.Enabled = true;
        textBoxPersonnummer.Enabled = true;
        textBoxGatuAdress.Enabled = true;
        textBoxTelefon.Enabled = true;
        textBoxMobil.Enabled = true;
    }

    public void DisableMetod()
    {
        textBoxFörNamn.Enabled = false;
        textBoxEfternamn.Enabled = false;
        textBoxPersonnummer.Enabled = false;
        textBoxGatuAdress.Enabled = false;
        textBoxTelefon.Enabled = false;
        textBoxMobil.Enabled = false;
    }

    public void ClearMetod()
    {
        textBoxFörNamn.Clear();
        textBoxEfternamn.Clear();
        textBoxPersonnummer.Clear();
        textBoxGatuAdress.Clear();
        textBoxTelefon.Clear();
        textBoxMobil.Clear();
    }

    public void SparaMetod()
    {
        FileStream fs = new FileStream("BankenAppenLista.bin", FileMode.OpenOrCreate, FileAccess.Write);
        BinaryFormatter bf = new BinaryFormatter();
        bf.Serialize(fs, KundLista);
        fs.Close();
    }
    private void Kunderna()
    {
        listBoxKunder.DataSource = null;
        listBoxKunder.Items.Clear();

            foreach (Kund kunder in KundLista)
        {
            listBoxKunder.Items.Add(kunder);
        }
    }
    private void Konton()
    {
        listBoxKonto.Items.Clear();

            foreach (Konto konton in aktuellKund.kontolista)
            {
                listBoxKonto.Items.Add(konton);
            }
    }
    private void Form1_Load(object sender, EventArgs e)
    {
    }

    private void buttonOkLäggTill_Click(object sender, EventArgs e)
    {
        listBoxKunder.DataSource = null;

        Kund Kunder = new Kund
        {
            Förnamn = textBoxFörNamn.Text,
            Efternamn = textBoxEfternamn.Text,
            Personnummer = textBoxPersonnummer.Text,
            GatuAdress = textBoxGatuAdress.Text,
            Telefon = textBoxTelefon.Text,
            Mobil = textBoxMobil.Text
        };

        KundLista.Add(Kunder);
        listBoxKunder.Items.Add(Kunder);

        listBoxKunder.DataSource = KundLista;

        SparaMetod();

        DisableMetod();
        ClearMetod();

    }
    private void buttonLäggTill_Click(object sender, EventArgs e)
    {
        EnableMetod();
        ClearMetod();
    }

    private void listBoxKunder_SelectedIndexChanged(object sender, EventArgs e)
    {
        aktuellKund = (Kund)listBoxKunder.SelectedItem;
        listBoxKunder.DataSource = KundLista;

        listBoxKonto.Items.Clear();

        foreach (Konto item in aktuellKund.kontolista)
        {
            listBoxKonto.Items.Add(item);
        }
        if(aktuellKund!= null)
        {
            textBoxFörNamn.Text = aktuellKund.Förnamn;
            textBoxEfternamn.Text = aktuellKund.Efternamn;
            textBoxPersonnummer.Text = aktuellKund.Personnummer;
            textBoxGatuAdress.Text = aktuellKund.GatuAdress;
            textBoxTelefon.Text = aktuellKund.Telefon;
            textBoxMobil.Text = aktuellKund.Mobil;
        }
     }

    private void buttonTaBort_Click(object sender, EventArgs e)
    {
        listBoxKunder.DataSource = null;
        listBoxKunder.Items.Clear();

        KundLista.Remove(aktuellKund);
        SparaMetod();

        Kunderna();
        ClearMetod();
        listBoxKunder.DataSource = KundLista;
    }

    private void buttonUppdatera_Click(object sender, EventArgs e)
    {
        EnableMetod();
        textBoxPersonnummer.Enabled = false;
    }

    private void buttonOkUppdatera_Click(object sender, EventArgs e)
    {
        aktuellKund.BytaAdress(textBoxFörNamn.Text, textBoxEfternamn.Text, textBoxGatuAdress.Text, textBoxTelefon.Text, textBoxMobil.Text);
        SparaMetod();
        Kunderna();
        DisableMetod();
    }

    private void buttonLäggTillKonto_Click(object sender, EventArgs e)
    {
        textBoxKontoNr.Enabled = true;
        textBoxSaldo.Enabled = true;
        textBoxRänta.Enabled = true;

        textBoxKontoNr.Clear();
        textBoxSaldo.Clear();
        textBoxRänta.Clear();

    }

    private void buttonOkÖppnaKonto_Click(object sender, EventArgs e)
    {
        listBoxKonto.DataSource = null;
        if (String.IsNullOrEmpty(textBoxKontoNr.Text) && String.IsNullOrEmpty(textBoxSaldo.Text) && String.IsNullOrEmpty(textBoxRänta.Text))
        {
            MessageBox.Show("Fyll i Kontouppgifter Tack!");
        }
        else
        {
            Konto nyttkonto;

            if (radioButtonPrivat.Checked)
            {
                Privat Pkonto = new Privat
                {
                    KontoNummer = textBoxKontoNr.Text,
                    Saldo = int.Parse(textBoxSaldo.Text),
                    Ränta = double.Parse(textBoxRänta.Text)
                };
                nyttkonto = Pkonto;
                textBoxKontoNr.Text = "";
                textBoxSaldo.Text = "";
                textBoxRänta.Text = "";

            }
            else if (radioButtonFramtid.Checked)
            {
                Framtid Fkonto = new Framtid
                {
                    KontoNummer = textBoxKontoNr.Text,
                    Saldo = int.Parse(textBoxSaldo.Text),
                    Ränta = double.Parse(textBoxRänta.Text)
                };
                nyttkonto = Fkonto;
            }
            else
            {
                Service Skonto = new Service
                {
                    KontoNummer = textBoxKontoNr.Text,
                    Saldo = int.Parse(textBoxSaldo.Text),
                    Ränta = double.Parse(textBoxRänta.Text)
                };
                nyttkonto = Skonto;
            }
            aktuellKund.ÖppnaKonto(nyttkonto);
            SparaMetod();
            Konton();
            textBoxKontoNr.Enabled = false;
            textBoxSaldo.Enabled = false;
            textBoxRänta.Enabled = false;
        }
    }

    private void listBoxKonto_SelectedIndexChanged(object sender, EventArgs e)
    {
        aktuelltKonto = (Konto)listBoxKonto.SelectedItem;
        if (aktuelltKonto != null)
        {
            textBoxKontoNr.Text = aktuelltKonto.KontoNummer;
            textBoxSaldo.Text = aktuelltKonto.Saldo.ToString();
            textBoxRänta.Text = aktuelltKonto.Ränta.ToString();
        }
    }
    private void buttonInUt_Click(object sender, EventArgs e)
    {
        int insättning = int.Parse(textBoxInsättning.Text);

        aktuelltKonto.Saldo = aktuelltKonto.Saldo + insättning;

        aktuelltKonto.Insättning(aktuelltKonto.Saldo);
        textBoxKontoNr.Text = aktuelltKonto.KontoNummer;
        textBoxSaldo.Text = aktuelltKonto.Saldo.ToString();
        textBoxRänta.Text = aktuelltKonto.Ränta.ToString();
        SparaMetod();
        textBoxInsättning.Clear();
    }

    private void buttonUttag_Click(object sender, EventArgs e)
    {
        int uttag = int.Parse(textBoxUttag.Text);
        aktuelltKonto.Saldo = aktuelltKonto.Saldo - uttag;
        aktuelltKonto.Insättning(aktuelltKonto.Saldo);
        textBoxKontoNr.Text = aktuelltKonto.KontoNummer;
        textBoxSaldo.Text = aktuelltKonto.Saldo.ToString();
        textBoxRänta.Text = aktuelltKonto.Ränta.ToString();
        SparaMetod();
        textBoxUttag.Clear();
    }

    private void buttonAvslutaKonto_Click(object sender, EventArgs e)
    {
        //listBoxKonto.DataSource = null;
        aktuelltKonto = (Konto)listBoxKonto.SelectedItem;

        KontoLista.Remove(aktuelltKonto);

       // listBoxKonto.DataSource = KontoLista;
        SparaMetod();
        Konton();
        textBoxKontoNr.Clear();
        textBoxRänta.Clear();
        textBoxSaldo.Clear();
    }
}

1 个答案:

答案 0 :(得分:0)

参见内联评论

 // assuming by the name this is only for the listBoxKunder
 // and every time the selected index changes, this method is invoked
 private void listBoxKunder_SelectedIndexChanged(object sender, EventArgs e)
{
    aktuellKund = (Kund)listBoxKunder.SelectedItem;

    // here you are changing the data source of the list box and this should/may cause 
    // the selected index to change! This in turn calls this method again
    // To fix this, to not modify the DataSource property in respnse to a SelectedIndexChanged event 
    listBoxKunder.DataSource = KundLista;

    listBoxKonto.Items.Clear();

    foreach (Konto item in aktuellKund.kontolista)
    {
        listBoxKonto.Items.Add(item);
    }
    if(aktuellKund!= null)
    {
        textBoxFörNamn.Text = aktuellKund.Förnamn;
        textBoxEfternamn.Text = aktuellKund.Efternamn;
        textBoxPersonnummer.Text = aktuellKund.Personnummer;
        textBoxGatuAdress.Text = aktuellKund.GatuAdress;
        textBoxTelefon.Text = aktuellKund.Telefon;
        textBoxMobil.Text = aktuellKund.Mobil;
    }
 }