RegisterForm.Designer.cs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. namespace felixyin
  2. {
  3. partial class RegisterForm
  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(RegisterForm));
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.keyTextBox = new System.Windows.Forms.TextBox();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.serialTextBox = new System.Windows.Forms.TextBox();
  33. this.copyKeyBtn = new System.Windows.Forms.Button();
  34. this.registerBtn = new System.Windows.Forms.Button();
  35. this.label3 = new System.Windows.Forms.Label();
  36. this.SuspendLayout();
  37. //
  38. // label1
  39. //
  40. this.label1.AutoSize = true;
  41. this.label1.Location = new System.Drawing.Point(42, 62);
  42. this.label1.Name = "label1";
  43. this.label1.Size = new System.Drawing.Size(23, 12);
  44. this.label1.TabIndex = 0;
  45. this.label1.Text = "Key";
  46. //
  47. // keyTextBox
  48. //
  49. this.keyTextBox.Location = new System.Drawing.Point(110, 59);
  50. this.keyTextBox.Name = "keyTextBox";
  51. this.keyTextBox.ReadOnly = true;
  52. this.keyTextBox.Size = new System.Drawing.Size(250, 21);
  53. this.keyTextBox.TabIndex = 1;
  54. //
  55. // label2
  56. //
  57. this.label2.AutoSize = true;
  58. this.label2.Location = new System.Drawing.Point(42, 96);
  59. this.label2.Name = "label2";
  60. this.label2.Size = new System.Drawing.Size(41, 12);
  61. this.label2.TabIndex = 2;
  62. this.label2.Text = "序列号";
  63. //
  64. // serialTextBox
  65. //
  66. this.serialTextBox.Location = new System.Drawing.Point(110, 93);
  67. this.serialTextBox.Name = "serialTextBox";
  68. this.serialTextBox.Size = new System.Drawing.Size(250, 21);
  69. this.serialTextBox.TabIndex = 3;
  70. this.serialTextBox.TextChanged += new System.EventHandler(this.serialTextBox_TextChanged);
  71. //
  72. // copyKeyBtn
  73. //
  74. this.copyKeyBtn.Location = new System.Drawing.Point(110, 138);
  75. this.copyKeyBtn.Name = "copyKeyBtn";
  76. this.copyKeyBtn.Size = new System.Drawing.Size(75, 23);
  77. this.copyKeyBtn.TabIndex = 4;
  78. this.copyKeyBtn.Text = "复制Key";
  79. this.copyKeyBtn.UseVisualStyleBackColor = true;
  80. this.copyKeyBtn.Click += new System.EventHandler(this.copyKeyBtn_Click);
  81. //
  82. // registerBtn
  83. //
  84. this.registerBtn.Enabled = false;
  85. this.registerBtn.Location = new System.Drawing.Point(285, 138);
  86. this.registerBtn.Name = "registerBtn";
  87. this.registerBtn.Size = new System.Drawing.Size(75, 23);
  88. this.registerBtn.TabIndex = 5;
  89. this.registerBtn.Text = "激活";
  90. this.registerBtn.UseVisualStyleBackColor = true;
  91. this.registerBtn.Click += new System.EventHandler(this.registerBtn_Click);
  92. //
  93. // label3
  94. //
  95. this.label3.AutoSize = true;
  96. this.label3.ForeColor = System.Drawing.Color.Maroon;
  97. this.label3.Location = new System.Drawing.Point(44, 25);
  98. this.label3.Name = "label3";
  99. this.label3.Size = new System.Drawing.Size(299, 12);
  100. this.label3.TabIndex = 6;
  101. this.label3.Text = "请复制Key,发送给软件提供者,索要序列号,激活软件";
  102. //
  103. // RegisterForm
  104. //
  105. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  106. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  107. this.ClientSize = new System.Drawing.Size(411, 188);
  108. this.Controls.Add(this.label3);
  109. this.Controls.Add(this.registerBtn);
  110. this.Controls.Add(this.copyKeyBtn);
  111. this.Controls.Add(this.serialTextBox);
  112. this.Controls.Add(this.label2);
  113. this.Controls.Add(this.keyTextBox);
  114. this.Controls.Add(this.label1);
  115. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  116. this.Name = "RegisterForm";
  117. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  118. this.Text = "请激活";
  119. this.ResumeLayout(false);
  120. this.PerformLayout();
  121. }
  122. #endregion
  123. private System.Windows.Forms.Label label1;
  124. private System.Windows.Forms.TextBox keyTextBox;
  125. private System.Windows.Forms.Label label2;
  126. private System.Windows.Forms.TextBox serialTextBox;
  127. private System.Windows.Forms.Button copyKeyBtn;
  128. private System.Windows.Forms.Button registerBtn;
  129. private System.Windows.Forms.Label label3;
  130. }
  131. }