Beispiel #1
0
        private void btnAddItem_Click(object sender, EventArgs e)
        {
            Forms.BillBody body = new BillBody(this.head);
            body.MdiParent = this.MdiParent;
            body.Show();

            RefreshChildGrid();
        }
Beispiel #2
0
        private void btnSave_Click(object sender, EventArgs e)
        {
            head.Save(head);

            Forms.BillBody body = new BillBody(head);
            body.MdiParent = this.MdiParent;

            this.Close();

            body.Show();
        }