Ejemplo n.º 1
0
        private void ExpenseListView_DoubleClick(object sender, EventArgs e)
        {
            AddExpenseForm form = new AddExpenseForm(this.SelectedExpense);
            form.ShowDialog(this);

            this.presenter.RefreshView();
        }
Ejemplo n.º 2
0
        private void EditExpenseMenuItem_Click(object sender, EventArgs e)
        {
            AddExpenseForm form = new AddExpenseForm(this.SelectedExpense);
            form.ShowDialog(this);

            this.presenter.RefreshView();
        }