Form1.Designer.cs
上传用户:yzllxs
上传日期:2020-11-17
资源大小:530k
文件大小:6k
源码类别:

中间件编程

开发平台:

C#

  1. namespace HookLock
  2. {
  3.     partial class Form1
  4.     {
  5.         /// <summary>
  6.         /// 必需的设计器变量。
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// 清理所有正在使用的资源。
  11.         /// </summary>
  12.         /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13.         protected override void Dispose(bool disposing)
  14.         {
  15.             if (disposing && (components != null))
  16.             {
  17.                 components.Dispose();
  18.             }
  19.             base.Dispose(disposing);
  20.         }
  21.         #region Windows 窗体设计器生成的代码
  22.         /// <summary>
  23.         /// 设计器支持所需的方法 - 不要
  24.         /// 使用代码编辑器修改此方法的内容。
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             this.components = new System.ComponentModel.Container();
  29.             this.panel1 = new System.Windows.Forms.Panel();
  30.             this.label1 = new System.Windows.Forms.Label();
  31.             this.button1 = new System.Windows.Forms.Button();
  32.             this.textBox1 = new System.Windows.Forms.TextBox();
  33.             this.label2 = new System.Windows.Forms.Label();
  34.             this.timer1 = new System.Windows.Forms.Timer(this.components);
  35.             this.skinEngine1 = new Sunisoft.IrisSkin.SkinEngine(((System.ComponentModel.Component)(this)));
  36.             this.panel1.SuspendLayout();
  37.             this.SuspendLayout();
  38.             // 
  39.             // panel1
  40.             // 
  41.             this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  42.             this.panel1.BackColor = System.Drawing.Color.Transparent;
  43.             this.panel1.Controls.Add(this.label1);
  44.             this.panel1.Controls.Add(this.button1);
  45.             this.panel1.Controls.Add(this.textBox1);
  46.             this.panel1.Location = new System.Drawing.Point(540, 421);
  47.             this.panel1.Name = "panel1";
  48.             this.panel1.Size = new System.Drawing.Size(200, 100);
  49.             this.panel1.TabIndex = 6;
  50.             // 
  51.             // label1
  52.             // 
  53.             this.label1.AutoSize = true;
  54.             this.label1.Location = new System.Drawing.Point(9, 28);
  55.             this.label1.Name = "label1";
  56.             this.label1.Size = new System.Drawing.Size(77, 12);
  57.             this.label1.TabIndex = 1;
  58.             this.label1.Text = "请输入密码:";
  59.             // 
  60.             // button1
  61.             // 
  62.             this.button1.BackColor = System.Drawing.Color.DarkGray;
  63.             this.button1.Location = new System.Drawing.Point(101, 57);
  64.             this.button1.Name = "button1";
  65.             this.button1.Size = new System.Drawing.Size(75, 23);
  66.             this.button1.TabIndex = 2;
  67.             this.button1.Text = "解锁";
  68.             this.button1.UseVisualStyleBackColor = false;
  69.             this.button1.Click += new System.EventHandler(this.button1_Click);
  70.             // 
  71.             // textBox1
  72.             // 
  73.             this.textBox1.Location = new System.Drawing.Point(90, 22);
  74.             this.textBox1.Name = "textBox1";
  75.             this.textBox1.PasswordChar = '*';
  76.             this.textBox1.Size = new System.Drawing.Size(100, 21);
  77.             this.textBox1.TabIndex = 0;
  78.             this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
  79.             // 
  80.             // label2
  81.             // 
  82.             this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  83.                         | System.Windows.Forms.AnchorStyles.Right)));
  84.             this.label2.AutoSize = true;
  85.             this.label2.BackColor = System.Drawing.Color.Transparent;
  86.             this.label2.Font = new System.Drawing.Font("楷体_GB2312", 42F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  87.             this.label2.ForeColor = System.Drawing.Color.Red;
  88.             this.label2.Location = new System.Drawing.Point(394, 371);
  89.             this.label2.Name = "label2";
  90.             this.label2.Size = new System.Drawing.Size(594, 56);
  91.             this.label2.TabIndex = 7;
  92.             this.label2.Text = "此机有人使用请勿动!";
  93.             // 
  94.             // timer1
  95.             // 
  96.             this.timer1.Enabled = true;
  97.             this.timer1.Interval = 1;
  98.             this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  99.             // 
  100.             // skinEngine1
  101.             // 
  102.             this.skinEngine1.SerialNumber = "";
  103.             this.skinEngine1.SkinFile = null;
  104.             // 
  105.             // Form1
  106.             // 
  107.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  108.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  109.             this.BackgroundImage = global::HookLock.Properties.Resources.Han_Ka_In041;
  110.             this.ClientSize = new System.Drawing.Size(742, 522);
  111.             this.Controls.Add(this.label2);
  112.             this.Controls.Add(this.panel1);
  113.             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  114.             this.Name = "Form1";
  115.             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  116.             this.Text = "Form1";
  117.             this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  118.             this.Load += new System.EventHandler(this.Form1_Load);
  119.             this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  120.             this.panel1.ResumeLayout(false);
  121.             this.panel1.PerformLayout();
  122.             this.ResumeLayout(false);
  123.             this.PerformLayout();
  124.         }
  125.         #endregion
  126.         private System.Windows.Forms.Panel panel1;
  127.         private System.Windows.Forms.Label label1;
  128.         private System.Windows.Forms.Button button1;
  129.         private System.Windows.Forms.TextBox textBox1;
  130.         public System.Windows.Forms.Label label2;
  131.         private System.Windows.Forms.Timer timer1;
  132.         private Sunisoft.IrisSkin.SkinEngine skinEngine1;
  133.     }
  134. }