From eff834040a6b4c8026f935f6d31af44acee47e4b Mon Sep 17 00:00:00 2001 From: kougyokugentou <41278462+kougyokugentou@users.noreply.github.com> Date: Tue, 12 Jan 2021 22:24:41 -0800 Subject: [PATCH] shell: main form load --- frmMainForm.Designer.cs | 1 + frmMainForm.cs | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/frmMainForm.Designer.cs b/frmMainForm.Designer.cs index 67c9718..9c4fd5f 100644 --- a/frmMainForm.Designer.cs +++ b/frmMainForm.Designer.cs @@ -38,6 +38,7 @@ namespace GreatHomeChildcare this.ClientSize = new System.Drawing.Size(800, 450); this.Name = "frmMainForm"; this.Text = "Main Screen"; + this.Load += new System.EventHandler(this.frmMainForm_Load); this.ResumeLayout(false); } diff --git a/frmMainForm.cs b/frmMainForm.cs index 168d747..ef9996b 100644 --- a/frmMainForm.cs +++ b/frmMainForm.cs @@ -16,5 +16,12 @@ namespace GreatHomeChildcare { InitializeComponent(); } + + //TODO: Add a button for each child the guardian has. + //TODO: Add admin button if guardian isAdmin = 1 + private void frmMainForm_Load(object sender, EventArgs e) + { + + } } }