TaskTEST.Designer.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. namespace TestProject
  2. {
  3. partial class TaskTEST
  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. this.label1 = new System.Windows.Forms.Label();
  29. this.label2 = new System.Windows.Forms.Label();
  30. this.label3 = new System.Windows.Forms.Label();
  31. this.label4 = new System.Windows.Forms.Label();
  32. this.label5 = new System.Windows.Forms.Label();
  33. this.label6 = new System.Windows.Forms.Label();
  34. this.button1 = new System.Windows.Forms.Button();
  35. this.button2 = new System.Windows.Forms.Button();
  36. this.groupBox1 = new System.Windows.Forms.GroupBox();
  37. this.groupBox1.SuspendLayout();
  38. this.SuspendLayout();
  39. //
  40. // label1
  41. //
  42. this.label1.AutoSize = true;
  43. this.label1.Location = new System.Drawing.Point(21, 27);
  44. this.label1.Name = "label1";
  45. this.label1.Size = new System.Drawing.Size(53, 12);
  46. this.label1.TabIndex = 0;
  47. this.label1.Text = "员工姓名";
  48. //
  49. // label2
  50. //
  51. this.label2.AutoSize = true;
  52. this.label2.Location = new System.Drawing.Point(377, 58);
  53. this.label2.Name = "label2";
  54. this.label2.Size = new System.Drawing.Size(35, 12);
  55. this.label2.TabIndex = 1;
  56. this.label2.Text = "Data2";
  57. //
  58. // label3
  59. //
  60. this.label3.AutoSize = true;
  61. this.label3.Location = new System.Drawing.Point(321, 58);
  62. this.label3.Name = "label3";
  63. this.label3.Size = new System.Drawing.Size(53, 12);
  64. this.label3.TabIndex = 2;
  65. this.label3.Text = "员工编号";
  66. //
  67. // label4
  68. //
  69. this.label4.AutoSize = true;
  70. this.label4.Location = new System.Drawing.Point(493, 58);
  71. this.label4.Name = "label4";
  72. this.label4.Size = new System.Drawing.Size(35, 12);
  73. this.label4.TabIndex = 3;
  74. this.label4.Text = "Data3";
  75. //
  76. // label5
  77. //
  78. this.label5.AutoSize = true;
  79. this.label5.Location = new System.Drawing.Point(437, 58);
  80. this.label5.Name = "label5";
  81. this.label5.Size = new System.Drawing.Size(53, 12);
  82. this.label5.TabIndex = 4;
  83. this.label5.Text = "员工岗位";
  84. //
  85. // label6
  86. //
  87. this.label6.AutoSize = true;
  88. this.label6.Location = new System.Drawing.Point(77, 27);
  89. this.label6.Name = "label6";
  90. this.label6.Size = new System.Drawing.Size(35, 12);
  91. this.label6.TabIndex = 5;
  92. this.label6.Text = "Data1";
  93. //
  94. // button1
  95. //
  96. this.button1.Location = new System.Drawing.Point(96, 183);
  97. this.button1.Name = "button1";
  98. this.button1.Size = new System.Drawing.Size(75, 23);
  99. this.button1.TabIndex = 6;
  100. this.button1.Text = "获取值";
  101. this.button1.UseVisualStyleBackColor = true;
  102. //
  103. // button2
  104. //
  105. this.button2.Location = new System.Drawing.Point(191, 183);
  106. this.button2.Name = "button2";
  107. this.button2.Size = new System.Drawing.Size(75, 23);
  108. this.button2.TabIndex = 7;
  109. this.button2.Text = "清除值";
  110. this.button2.UseVisualStyleBackColor = true;
  111. //
  112. // groupBox1
  113. //
  114. this.groupBox1.Controls.Add(this.label1);
  115. this.groupBox1.Controls.Add(this.label6);
  116. this.groupBox1.Location = new System.Drawing.Point(82, 31);
  117. this.groupBox1.Name = "groupBox1";
  118. this.groupBox1.Size = new System.Drawing.Size(200, 100);
  119. this.groupBox1.TabIndex = 9;
  120. this.groupBox1.TabStop = false;
  121. this.groupBox1.Text = "groupBox1";
  122. //
  123. // TaskTEST
  124. //
  125. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  126. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  127. this.ClientSize = new System.Drawing.Size(692, 376);
  128. this.Controls.Add(this.groupBox1);
  129. this.Controls.Add(this.button2);
  130. this.Controls.Add(this.button1);
  131. this.Controls.Add(this.label5);
  132. this.Controls.Add(this.label4);
  133. this.Controls.Add(this.label3);
  134. this.Controls.Add(this.label2);
  135. this.Name = "TaskTEST";
  136. this.Text = "Form3";
  137. this.groupBox1.ResumeLayout(false);
  138. this.groupBox1.PerformLayout();
  139. this.ResumeLayout(false);
  140. this.PerformLayout();
  141. }
  142. #endregion
  143. private System.Windows.Forms.Label label1;
  144. private System.Windows.Forms.Label label2;
  145. private System.Windows.Forms.Label label3;
  146. private System.Windows.Forms.Label label4;
  147. private System.Windows.Forms.Label label5;
  148. private System.Windows.Forms.Label label6;
  149. private System.Windows.Forms.Button button1;
  150. private System.Windows.Forms.Button button2;
  151. private System.Windows.Forms.GroupBox groupBox1;
  152. }
  153. }