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

外挂编程

开发平台:

C/C++

  1. namespace QQWinFarm
  2. {
  3.     partial class FrmFramVerify
  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(FrmFramVerify));
  29.             this.lblVerifyCode = new System.Windows.Forms.Label();
  30.             this.txtVerify = new System.Windows.Forms.TextBox();
  31.             this.btnsubmit = new System.Windows.Forms.Button();
  32.             this.picVerify = new System.Windows.Forms.PictureBox();
  33.             this.butVerify = new System.Windows.Forms.Button();
  34.             this.panel1 = new System.Windows.Forms.Panel();
  35.             ((System.ComponentModel.ISupportInitialize)(this.picVerify)).BeginInit();
  36.             this.panel1.SuspendLayout();
  37.             this.SuspendLayout();
  38.             // 
  39.             // lblVerifyCode
  40.             // 
  41.             this.lblVerifyCode.AutoSize = true;
  42.             this.lblVerifyCode.Location = new System.Drawing.Point(16, 81);
  43.             this.lblVerifyCode.Name = "lblVerifyCode";
  44.             this.lblVerifyCode.Size = new System.Drawing.Size(53, 12);
  45.             this.lblVerifyCode.TabIndex = 21;
  46.             this.lblVerifyCode.Text = "验证码:";
  47.             // 
  48.             // txtVerify
  49.             // 
  50.             this.txtVerify.Location = new System.Drawing.Point(75, 78);
  51.             this.txtVerify.MaxLength = 4;
  52.             this.txtVerify.Name = "txtVerify";
  53.             this.txtVerify.Size = new System.Drawing.Size(112, 21);
  54.             this.txtVerify.TabIndex = 0;
  55.             this.txtVerify.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtVerify_KeyDown);
  56.             // 
  57.             // btnsubmit
  58.             // 
  59.             this.btnsubmit.Location = new System.Drawing.Point(28, 105);
  60.             this.btnsubmit.Name = "btnsubmit";
  61.             this.btnsubmit.Size = new System.Drawing.Size(75, 23);
  62.             this.btnsubmit.TabIndex = 1;
  63.             this.btnsubmit.Text = "确认";
  64.             this.btnsubmit.UseVisualStyleBackColor = true;
  65.             this.btnsubmit.Click += new System.EventHandler(this.btnsubmit_Click);
  66.             // 
  67.             // picVerify
  68.             // 
  69.             this.picVerify.Cursor = System.Windows.Forms.Cursors.Hand;
  70.             this.picVerify.Location = new System.Drawing.Point(75, 14);
  71.             this.picVerify.Name = "picVerify";
  72.             this.picVerify.Size = new System.Drawing.Size(112, 49);
  73.             this.picVerify.TabIndex = 18;
  74.             this.picVerify.TabStop = false;
  75.             // 
  76.             // butVerify
  77.             // 
  78.             this.butVerify.Location = new System.Drawing.Point(109, 105);
  79.             this.butVerify.Name = "butVerify";
  80.             this.butVerify.Size = new System.Drawing.Size(87, 23);
  81.             this.butVerify.TabIndex = 2;
  82.             this.butVerify.Text = "重获验证码";
  83.             this.butVerify.UseVisualStyleBackColor = true;
  84.             this.butVerify.Click += new System.EventHandler(this.butVerify_Click);
  85.             // 
  86.             // panel1
  87.             // 
  88.             this.panel1.Controls.Add(this.picVerify);
  89.             this.panel1.Controls.Add(this.butVerify);
  90.             this.panel1.Controls.Add(this.btnsubmit);
  91.             this.panel1.Controls.Add(this.lblVerifyCode);
  92.             this.panel1.Controls.Add(this.txtVerify);
  93.             this.panel1.Location = new System.Drawing.Point(10, 9);
  94.             this.panel1.Name = "panel1";
  95.             this.panel1.Size = new System.Drawing.Size(208, 156);
  96.             this.panel1.TabIndex = 23;
  97.             // 
  98.             // FrmFramVerify
  99.             // 
  100.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  101.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  102.             this.ClientSize = new System.Drawing.Size(231, 177);
  103.             this.ControlBox = false;
  104.             this.Controls.Add(this.panel1);
  105.             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  106.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  107.             this.Name = "FrmFramVerify";
  108.             this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  109.             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  110.             this.Text = "验证码";
  111.             this.Load += new System.EventHandler(this.FrmFramVerify_Load);
  112.             ((System.ComponentModel.ISupportInitialize)(this.picVerify)).EndInit();
  113.             this.panel1.ResumeLayout(false);
  114.             this.panel1.PerformLayout();
  115.             this.ResumeLayout(false);
  116.         }
  117.         #endregion
  118.         private System.Windows.Forms.Label lblVerifyCode;
  119.         private System.Windows.Forms.TextBox txtVerify;
  120.         private System.Windows.Forms.Button btnsubmit;
  121.         private System.Windows.Forms.PictureBox picVerify;
  122.         private System.Windows.Forms.Button butVerify;
  123.         private System.Windows.Forms.Panel panel1;
  124.     }
  125. }