Beispiel #1
0
        private void AddNewInvoice_Click(object sender, EventArgs e)
        {
            InvoiceForm form = new InvoiceForm();

            form.AddInvoice();
        }
Beispiel #2
0
        private void ShowInvoicesButton_Click(object sender, EventArgs e)
        {
            InvoiceForm form = new InvoiceForm();

            form.ShowDialog();
        }