123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- namespace felixyin
- {
- partial class RegisterForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RegisterForm));
- this.label1 = new System.Windows.Forms.Label();
- this.keyTextBox = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.serialTextBox = new System.Windows.Forms.TextBox();
- this.copyKeyBtn = new System.Windows.Forms.Button();
- this.registerBtn = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(42, 62);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(23, 12);
- this.label1.TabIndex = 0;
- this.label1.Text = "Key";
- //
- // keyTextBox
- //
- this.keyTextBox.Location = new System.Drawing.Point(110, 59);
- this.keyTextBox.Name = "keyTextBox";
- this.keyTextBox.ReadOnly = true;
- this.keyTextBox.Size = new System.Drawing.Size(250, 21);
- this.keyTextBox.TabIndex = 1;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(42, 96);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(41, 12);
- this.label2.TabIndex = 2;
- this.label2.Text = "序列号";
- //
- // serialTextBox
- //
- this.serialTextBox.Location = new System.Drawing.Point(110, 93);
- this.serialTextBox.Name = "serialTextBox";
- this.serialTextBox.Size = new System.Drawing.Size(250, 21);
- this.serialTextBox.TabIndex = 3;
- this.serialTextBox.TextChanged += new System.EventHandler(this.serialTextBox_TextChanged);
- //
- // copyKeyBtn
- //
- this.copyKeyBtn.Location = new System.Drawing.Point(110, 138);
- this.copyKeyBtn.Name = "copyKeyBtn";
- this.copyKeyBtn.Size = new System.Drawing.Size(75, 23);
- this.copyKeyBtn.TabIndex = 4;
- this.copyKeyBtn.Text = "复制Key";
- this.copyKeyBtn.UseVisualStyleBackColor = true;
- this.copyKeyBtn.Click += new System.EventHandler(this.copyKeyBtn_Click);
- //
- // registerBtn
- //
- this.registerBtn.Enabled = false;
- this.registerBtn.Location = new System.Drawing.Point(285, 138);
- this.registerBtn.Name = "registerBtn";
- this.registerBtn.Size = new System.Drawing.Size(75, 23);
- this.registerBtn.TabIndex = 5;
- this.registerBtn.Text = "激活";
- this.registerBtn.UseVisualStyleBackColor = true;
- this.registerBtn.Click += new System.EventHandler(this.registerBtn_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.ForeColor = System.Drawing.Color.Maroon;
- this.label3.Location = new System.Drawing.Point(44, 25);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(299, 12);
- this.label3.TabIndex = 6;
- this.label3.Text = "请复制Key,发送给软件提供者,索要序列号,激活软件";
- //
- // RegisterForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(411, 188);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.registerBtn);
- this.Controls.Add(this.copyKeyBtn);
- this.Controls.Add(this.serialTextBox);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.keyTextBox);
- this.Controls.Add(this.label1);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "RegisterForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "请激活";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox keyTextBox;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.TextBox serialTextBox;
- private System.Windows.Forms.Button copyKeyBtn;
- private System.Windows.Forms.Button registerBtn;
- private System.Windows.Forms.Label label3;
- }
- }
|