From 450a002ef90616a0db8bafeb308ff7578b35b104 Mon Sep 17 00:00:00 2001 From: kougyokugentou <41278462+kougyokugentou@users.noreply.github.com> Date: Sun, 17 Jan 2021 17:57:00 -0800 Subject: [PATCH] Shell: main admin form --- frmAdminForm.Designer.cs | 48 ++++++++++++++++ frmAdminForm.cs | 25 ++++++++ frmAdminForm.resx | 120 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 193 insertions(+) create mode 100644 frmAdminForm.Designer.cs create mode 100644 frmAdminForm.cs create mode 100644 frmAdminForm.resx diff --git a/frmAdminForm.Designer.cs b/frmAdminForm.Designer.cs new file mode 100644 index 0000000..0783713 --- /dev/null +++ b/frmAdminForm.Designer.cs @@ -0,0 +1,48 @@ + +namespace GreatHomeChildcare +{ + partial class frmAdminForm + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.SuspendLayout(); + // + // frmAdminForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Name = "frmAdminForm"; + this.Text = "frmAdminForm"; + this.Load += new System.EventHandler(this.frmAdminForm_Load); + this.ResumeLayout(false); + + } + + #endregion + } +} \ No newline at end of file diff --git a/frmAdminForm.cs b/frmAdminForm.cs new file mode 100644 index 0000000..bdd7428 --- /dev/null +++ b/frmAdminForm.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace GreatHomeChildcare +{ + public partial class frmAdminForm : Form + { + public frmAdminForm() + { + InitializeComponent(); + } + + private void frmAdminForm_Load(object sender, EventArgs e) + { + + } + } +} diff --git a/frmAdminForm.resx b/frmAdminForm.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/frmAdminForm.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file