コード例 #1
0
ファイル: wBill.cs プロジェクト: matija-horvat/Bills2
        private void btnAddItem_Click(object sender, EventArgs e)
        {
            Forms.BillBody body = new BillBody(this.head);
            body.MdiParent = this.MdiParent;
            body.Show();

            RefreshChildGrid();
        }
コード例 #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();
        }