FrmFarmLogin.Designer.cs
上传用户:xhd1221
上传日期:2022-05-28
资源大小:186k
文件大小:8k
源码类别:

外挂编程

开发平台:

C/C++

  1. namespace QQWinFarm
  2. {
  3.     partial class FrmFarmLogin
  4.     {
  5.         /// <summary>
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// Clean up any resources being used.
  11.         /// </summary>
  12.         /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22.         /// <summary>
  23.         /// Required method for Designer support - do not modify
  24.         /// the contents of this method with the code editor.
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmFarmLogin));
  29.             this.picVerify = new System.Windows.Forms.PictureBox();
  30.             this.lblVerifyCode = new System.Windows.Forms.Label();
  31.             this.lblPwd = new System.Windows.Forms.Label();
  32.             this.lblQQ = new System.Windows.Forms.Label();
  33.             this.txtVerify = new System.Windows.Forms.TextBox();
  34.             this.btnLogin = new System.Windows.Forms.Button();
  35.             this.txtPwd = new System.Windows.Forms.TextBox();
  36.             this.txtQQ = new System.Windows.Forms.TextBox();
  37.             this.butVerify = new System.Windows.Forms.Button();
  38.             this.panel1 = new System.Windows.Forms.Panel();
  39.             ((System.ComponentModel.ISupportInitialize)(this.picVerify)).BeginInit();
  40.             this.panel1.SuspendLayout();
  41.             this.SuspendLayout();
  42.             // 
  43.             // picVerify
  44.             // 
  45.             this.picVerify.Cursor = System.Windows.Forms.Cursors.Hand;
  46.             this.picVerify.Location = new System.Drawing.Point(70, 90);
  47.             this.picVerify.Name = "picVerify";
  48.             this.picVerify.Size = new System.Drawing.Size(112, 49);
  49.             this.picVerify.TabIndex = 13;
  50.             this.picVerify.TabStop = false;
  51.             // 
  52.             // lblVerifyCode
  53.             // 
  54.             this.lblVerifyCode.AutoSize = true;
  55.             this.lblVerifyCode.Location = new System.Drawing.Point(8, 66);
  56.             this.lblVerifyCode.Name = "lblVerifyCode";
  57.             this.lblVerifyCode.Size = new System.Drawing.Size(53, 12);
  58.             this.lblVerifyCode.TabIndex = 10;
  59.             this.lblVerifyCode.Text = "验证码:";
  60.             // 
  61.             // lblPwd
  62.             // 
  63.             this.lblPwd.AutoSize = true;
  64.             this.lblPwd.Location = new System.Drawing.Point(20, 39);
  65.             this.lblPwd.Name = "lblPwd";
  66.             this.lblPwd.Size = new System.Drawing.Size(41, 12);
  67.             this.lblPwd.TabIndex = 11;
  68.             this.lblPwd.Text = "密码:";
  69.             // 
  70.             // lblQQ
  71.             // 
  72.             this.lblQQ.AutoSize = true;
  73.             this.lblQQ.Location = new System.Drawing.Point(20, 12);
  74.             this.lblQQ.Name = "lblQQ";
  75.             this.lblQQ.Size = new System.Drawing.Size(41, 12);
  76.             this.lblQQ.TabIndex = 12;
  77.             this.lblQQ.Text = "QQ号:";
  78.             // 
  79.             // txtVerify
  80.             // 
  81.             this.txtVerify.Location = new System.Drawing.Point(70, 63);
  82.             this.txtVerify.MaxLength = 4;
  83.             this.txtVerify.Name = "txtVerify";
  84.             this.txtVerify.Size = new System.Drawing.Size(112, 21);
  85.             this.txtVerify.TabIndex = 2;
  86.             this.txtVerify.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtVerify_KeyDown);
  87.             this.txtVerify.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtVerify_KeyPress);
  88.             // 
  89.             // btnLogin
  90.             // 
  91.             this.btnLogin.Location = new System.Drawing.Point(11, 146);
  92.             this.btnLogin.Name = "btnLogin";
  93.             this.btnLogin.Size = new System.Drawing.Size(75, 23);
  94.             this.btnLogin.TabIndex = 3;
  95.             this.btnLogin.Text = "登录农场";
  96.             this.btnLogin.UseVisualStyleBackColor = true;
  97.             this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
  98.             // 
  99.             // txtPwd
  100.             // 
  101.             this.txtPwd.Location = new System.Drawing.Point(70, 36);
  102.             this.txtPwd.Name = "txtPwd";
  103.             this.txtPwd.PasswordChar = '*';
  104.             this.txtPwd.Size = new System.Drawing.Size(112, 21);
  105.             this.txtPwd.TabIndex = 1;
  106.             // 
  107.             // txtQQ
  108.             // 
  109.             this.txtQQ.Location = new System.Drawing.Point(70, 9);
  110.             this.txtQQ.Name = "txtQQ";
  111.             this.txtQQ.Size = new System.Drawing.Size(112, 21);
  112.             this.txtQQ.TabIndex = 0;
  113.             this.txtQQ.Text = "361071552";
  114.             // 
  115.             // butVerify
  116.             // 
  117.             this.butVerify.Location = new System.Drawing.Point(92, 146);
  118.             this.butVerify.Name = "butVerify";
  119.             this.butVerify.Size = new System.Drawing.Size(87, 23);
  120.             this.butVerify.TabIndex = 4;
  121.             this.butVerify.Text = "重获验证码";
  122.             this.butVerify.UseVisualStyleBackColor = true;
  123.             this.butVerify.Click += new System.EventHandler(this.butVerify_Click);
  124.             // 
  125.             // panel1
  126.             // 
  127.             this.panel1.Controls.Add(this.lblQQ);
  128.             this.panel1.Controls.Add(this.butVerify);
  129.             this.panel1.Controls.Add(this.txtQQ);
  130.             this.panel1.Controls.Add(this.picVerify);
  131.             this.panel1.Controls.Add(this.txtPwd);
  132.             this.panel1.Controls.Add(this.lblVerifyCode);
  133.             this.panel1.Controls.Add(this.btnLogin);
  134.             this.panel1.Controls.Add(this.lblPwd);
  135.             this.panel1.Controls.Add(this.txtVerify);
  136.             this.panel1.Location = new System.Drawing.Point(12, 12);
  137.             this.panel1.Name = "panel1";
  138.             this.panel1.Size = new System.Drawing.Size(198, 183);
  139.             this.panel1.TabIndex = 15;
  140.             // 
  141.             // FrmFarmLogin
  142.             // 
  143.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  144.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  145.             this.ClientSize = new System.Drawing.Size(219, 203);
  146.             this.Controls.Add(this.panel1);
  147.             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  148.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  149.             this.MaximizeBox = false;
  150.             this.Name = "FrmFarmLogin";
  151.             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  152.             this.Text = "登录";
  153.             this.Load += new System.EventHandler(this.FrmFarmLogin_Load);
  154.             this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmFarmLogin_FormClosed);
  155.             ((System.ComponentModel.ISupportInitialize)(this.picVerify)).EndInit();
  156.             this.panel1.ResumeLayout(false);
  157.             this.panel1.PerformLayout();
  158.             this.ResumeLayout(false);
  159.         }
  160.         #endregion
  161.         private System.Windows.Forms.PictureBox picVerify;
  162.         private System.Windows.Forms.Label lblVerifyCode;
  163.         private System.Windows.Forms.Label lblPwd;
  164.         private System.Windows.Forms.Label lblQQ;
  165.         private System.Windows.Forms.TextBox txtVerify;
  166.         private System.Windows.Forms.Button btnLogin;
  167.         private System.Windows.Forms.TextBox txtPwd;
  168.         private System.Windows.Forms.TextBox txtQQ;
  169.         private System.Windows.Forms.Button butVerify;
  170.         private System.Windows.Forms.Panel panel1;
  171.     }
  172. }