📄 mainform.designer.cs
字号:
namespace Fyfjm
{
partial class MainForm
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.button4 = new System.Windows.Forms.Button();
this.button5 = new System.Windows.Forms.Button();
this.button6 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
this.label1.ForeColor = System.Drawing.Color.White;
this.label1.Location = new System.Drawing.Point(100, 8);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(103, 20);
this.label1.Text = "Main Menu";
//
// button1
//
this.button1.BackColor = System.Drawing.Color.LightSkyBlue;
this.button1.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
this.button1.ForeColor = System.Drawing.Color.White;
this.button1.Location = new System.Drawing.Point(25, 35);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(254, 24);
this.button1.TabIndex = 8;
this.button1.TabStop = false;
this.button1.Text = "1.Stock Take";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.BackColor = System.Drawing.Color.LightSkyBlue;
this.button2.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
this.button2.ForeColor = System.Drawing.Color.White;
this.button2.Location = new System.Drawing.Point(25, 66);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(254, 25);
this.button2.TabIndex = 9;
this.button2.TabStop = false;
this.button2.Text = "2.SKU Equiry";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// button3
//
this.button3.BackColor = System.Drawing.Color.LightSkyBlue;
this.button3.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
this.button3.ForeColor = System.Drawing.Color.White;
this.button3.Location = new System.Drawing.Point(25, 98);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(254, 24);
this.button3.TabIndex = 10;
this.button3.TabStop = false;
this.button3.Text = "3.Zone Equiry/Delete";
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// button4
//
this.button4.BackColor = System.Drawing.Color.LightSkyBlue;
this.button4.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
this.button4.ForeColor = System.Drawing.Color.White;
this.button4.Location = new System.Drawing.Point(25, 130);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(254, 24);
this.button4.TabIndex = 11;
this.button4.TabStop = false;
this.button4.Text = "4.Configuration";
this.button4.Click += new System.EventHandler(this.button4_Click);
//
// button5
//
this.button5.BackColor = System.Drawing.Color.LightSkyBlue;
this.button5.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
this.button5.ForeColor = System.Drawing.Color.White;
this.button5.Location = new System.Drawing.Point(25, 162);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(254, 24);
this.button5.TabIndex = 12;
this.button5.TabStop = false;
this.button5.Text = "5.Backlight";
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// button6
//
this.button6.BackColor = System.Drawing.Color.LightSkyBlue;
this.button6.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
this.button6.ForeColor = System.Drawing.Color.White;
this.button6.Location = new System.Drawing.Point(25, 195);
this.button6.Name = "button6";
this.button6.Size = new System.Drawing.Size(254, 24);
this.button6.TabIndex = 13;
this.button6.TabStop = false;
this.button6.Text = "6.Exit";
this.button6.Click += new System.EventHandler(this.button6_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.BackColor = System.Drawing.Color.SteelBlue;
this.ClientSize = new System.Drawing.Size(638, 455);
this.Controls.Add(this.button6);
this.Controls.Add(this.button5);
this.Controls.Add(this.button4);
this.Controls.Add(this.button3);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.label1);
this.ForeColor = System.Drawing.Color.Red;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "MainForm";
this.Text = " Moda Mia LTD";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MainForm_KeyDown);
this.Load += new System.EventHandler(this.MainForm_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.Button button5;
private System.Windows.Forms.Button button6;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -