GreatHomeChildcare-2/frmMainForm.Designer.cs

65 lines
2.2 KiB
C#
Raw Normal View History

2021-01-12 06:34:14 +00:00

namespace GreatHomeChildcare
{
partial class frmMainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
2021-01-14 04:12:39 +00:00
this.btnAdmin = new System.Windows.Forms.Button();
2021-01-12 06:34:14 +00:00
this.SuspendLayout();
//
2021-01-14 04:12:39 +00:00
// btnAdmin
//
this.btnAdmin.Enabled = false;
this.btnAdmin.Location = new System.Drawing.Point(675, 12);
this.btnAdmin.Name = "btnAdmin";
this.btnAdmin.Size = new System.Drawing.Size(113, 41);
this.btnAdmin.TabIndex = 0;
this.btnAdmin.TabStop = false;
this.btnAdmin.Text = ">>ADMIN<<";
this.btnAdmin.UseVisualStyleBackColor = true;
this.btnAdmin.Visible = false;
this.btnAdmin.Click += new System.EventHandler(this.btnAdmin_Click);
//
2021-01-12 06:34:14 +00:00
// frmMainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
2021-01-14 04:12:39 +00:00
this.Controls.Add(this.btnAdmin);
2021-01-12 06:34:14 +00:00
this.Name = "frmMainForm";
this.Text = "Main Screen";
2021-01-13 06:24:41 +00:00
this.Load += new System.EventHandler(this.frmMainForm_Load);
2021-01-12 06:34:14 +00:00
this.ResumeLayout(false);
}
#endregion
2021-01-14 04:12:39 +00:00
private System.Windows.Forms.Button btnAdmin;
2021-01-12 06:34:14 +00:00
}
}