예제 #1
0
        private void annualSbDelete_Click(object sender, EventArgs e)
        {
            string name = annualSbLv.SelectedItems[0].SubItems[0].Text;

            _year.RemoveSoftBill(name);
            RefreshPage();
        }
예제 #2
0
        private void sbDelete_Click(object sender, EventArgs e)
        {
            string name = softBillsLv.SelectedItems[0].SubItems[0].Text;

            _year.RemoveSoftBill(name, _monthSelected);
            RefreshPage();
        }