namespace CSS_Solution.Forms { partial class Welcome_Form { /// /// 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() { Welcome = new Label(); password = new TextBox(); ID = new TextBox(); MainPanel = new Panel(); countdown = new Countdown(); test = new Button(); Record = new Button(); SavePassword = new CheckBox(); MainPanel.SuspendLayout(); SuspendLayout(); // // Welcome // Welcome.AutoSize = true; Welcome.Font = new Font("Microsoft YaHei UI", 36F, FontStyle.Bold, GraphicsUnit.Point, 134); Welcome.ForeColor = Color.White; Welcome.Location = new Point(60, 30); Welcome.Name = "Welcome"; Welcome.Size = new Size(737, 96); Welcome.TabIndex = 0; Welcome.Text = "Welcome To C.s.s.S"; // // password // password.BackColor = Color.FromArgb(25, 25, 25); password.BorderStyle = BorderStyle.FixedSingle; password.Font = new Font("Microsoft YaHei UI", 15F, FontStyle.Italic, GraphicsUnit.Point, 134); password.ForeColor = Color.Silver; password.Location = new Point(86, 271); password.Name = "password"; password.Size = new Size(390, 46); password.TabIndex = 1; password.Text = "密码..."; password.Enter += password_Enter; password.Leave += password_Leave; // // ID // ID.BackColor = Color.FromArgb(25, 25, 25); ID.BorderStyle = BorderStyle.FixedSingle; ID.Font = new Font("Microsoft YaHei UI", 15F, FontStyle.Italic, GraphicsUnit.Point, 134); ID.ForeColor = Color.Silver; ID.Location = new Point(86, 186); ID.Name = "ID"; ID.Size = new Size(390, 46); ID.TabIndex = 2; ID.Text = "学号..."; ID.Enter += ID_Enter; ID.Leave += ID_Leave; // // MainPanel // MainPanel.Controls.Add(countdown); MainPanel.Controls.Add(test); MainPanel.Controls.Add(Record); MainPanel.Controls.Add(SavePassword); MainPanel.Controls.Add(password); MainPanel.Controls.Add(Welcome); MainPanel.Controls.Add(ID); MainPanel.Dock = DockStyle.Fill; MainPanel.Location = new Point(0, 0); MainPanel.Name = "MainPanel"; MainPanel.Size = new Size(1403, 736); MainPanel.TabIndex = 3; // // countdown // countdown.BackColor = Color.FromArgb(25, 25, 25); countdown.Location = new Point(776, 186); countdown.Name = "countdown"; countdown.Size = new Size(395, 222); countdown.TabIndex = 6; // // test // test.BackColor = Color.FromArgb(25, 25, 25); test.ForeColor = Color.White; test.Location = new Point(269, 393); test.Name = "test"; test.Size = new Size(112, 34); test.TabIndex = 5; test.Text = "验证密码"; test.UseVisualStyleBackColor = false; // // Record // Record.BackColor = Color.FromArgb(25, 25, 25); Record.ForeColor = Color.White; Record.Location = new Point(86, 393); Record.Name = "Record"; Record.Size = new Size(112, 34); Record.TabIndex = 4; Record.Text = "保存密码"; Record.UseVisualStyleBackColor = false; // // SavePassword // SavePassword.AutoSize = true; SavePassword.ForeColor = Color.White; SavePassword.Location = new Point(86, 337); SavePassword.Name = "SavePassword"; SavePassword.Size = new Size(180, 28); SavePassword.TabIndex = 3; SavePassword.Text = "保存密码到硬盘?"; SavePassword.UseVisualStyleBackColor = true; SavePassword.CheckedChanged += SavePassword_CheckedChanged; // // Welcome_Form // AutoScaleDimensions = new SizeF(11F, 24F); AutoScaleMode = AutoScaleMode.Font; BackColor = Color.FromArgb(25, 25, 25); ClientSize = new Size(1403, 736); Controls.Add(MainPanel); FormBorderStyle = FormBorderStyle.None; Name = "Welcome_Form"; Text = "Welcome_Form"; MainPanel.ResumeLayout(false); MainPanel.PerformLayout(); ResumeLayout(false); } #endregion private Label Welcome; private TextBox ID; private TextBox password; private Panel panel1; private Panel MainPanel; private FontDialog fontDialog1; private CheckBox SavePassword; private Button Record; private Button test; private Countdown countdown; } }