shell: main form load

This commit is contained in:
kougyokugentou 2021-01-12 22:24:41 -08:00
parent 0cf477b63d
commit eff834040a
2 changed files with 8 additions and 0 deletions

View File

@ -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);
}

View File

@ -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)
{
}
}
}