Dialog_MaterialVerify.Designer.cs 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. using System.ComponentModel;
  2. using System.Drawing;
  3. using System.Windows.Forms;
  4. namespace MainForm.FaForm
  5. {
  6. partial class Dialog_MaterialVerify
  7. {
  8. /// <summary>
  9. /// Required designer variable.
  10. /// </summary>
  11. private IContainer components = null;
  12. /// <summary>
  13. /// Clean up any resources being used.
  14. /// </summary>
  15. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  16. protected override void Dispose(bool disposing)
  17. {
  18. if (disposing && (components != null))
  19. {
  20. components.Dispose();
  21. }
  22. base.Dispose(disposing);
  23. }
  24. #region Windows Form Designer generated code
  25. /// <summary>
  26. /// Required method for Designer support - do not modify
  27. /// the contents of this method with the code editor.
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. this.groupBox1 = new System.Windows.Forms.GroupBox();
  32. this.label4 = new System.Windows.Forms.Label();
  33. this.SN = new System.Windows.Forms.TextBox();
  34. this.label2 = new System.Windows.Forms.Label();
  35. this.Type = new System.Windows.Forms.TextBox();
  36. this.Station = new System.Windows.Forms.TextBox();
  37. this.label1 = new System.Windows.Forms.Label();
  38. this.groupBox2 = new System.Windows.Forms.GroupBox();
  39. this.ErrorLab = new System.Windows.Forms.Label();
  40. this.label3 = new System.Windows.Forms.Label();
  41. this.Barcode = new System.Windows.Forms.TextBox();
  42. this.Cancel_btn = new System.Windows.Forms.Button();
  43. this.OK_btn = new System.Windows.Forms.Button();
  44. this.groupBox1.SuspendLayout();
  45. this.groupBox2.SuspendLayout();
  46. this.SuspendLayout();
  47. //
  48. // groupBox1
  49. //
  50. this.groupBox1.Controls.Add(this.label4);
  51. this.groupBox1.Controls.Add(this.SN);
  52. this.groupBox1.Controls.Add(this.label2);
  53. this.groupBox1.Controls.Add(this.Type);
  54. this.groupBox1.Controls.Add(this.Station);
  55. this.groupBox1.Controls.Add(this.label1);
  56. this.groupBox1.Location = new System.Drawing.Point(33, 22);
  57. this.groupBox1.Name = "groupBox1";
  58. this.groupBox1.Size = new System.Drawing.Size(649, 183);
  59. this.groupBox1.TabIndex = 0;
  60. this.groupBox1.TabStop = false;
  61. this.groupBox1.Text = "辅耗材信息";
  62. //
  63. // label4
  64. //
  65. this.label4.AutoSize = true;
  66. this.label4.Location = new System.Drawing.Point(63, 123);
  67. this.label4.Name = "label4";
  68. this.label4.Size = new System.Drawing.Size(80, 18);
  69. this.label4.TabIndex = 12;
  70. this.label4.Text = "耗材SN码";
  71. //
  72. // SN
  73. //
  74. this.SN.Enabled = false;
  75. this.SN.Location = new System.Drawing.Point(187, 120);
  76. this.SN.Name = "SN";
  77. this.SN.Size = new System.Drawing.Size(280, 28);
  78. this.SN.TabIndex = 11;
  79. //
  80. // label2
  81. //
  82. this.label2.AutoSize = true;
  83. this.label2.Location = new System.Drawing.Point(63, 80);
  84. this.label2.Name = "label2";
  85. this.label2.Size = new System.Drawing.Size(80, 18);
  86. this.label2.TabIndex = 10;
  87. this.label2.Text = "耗材类型";
  88. //
  89. // Type
  90. //
  91. this.Type.Enabled = false;
  92. this.Type.Location = new System.Drawing.Point(187, 77);
  93. this.Type.Name = "Type";
  94. this.Type.Size = new System.Drawing.Size(280, 28);
  95. this.Type.TabIndex = 9;
  96. //
  97. // Station
  98. //
  99. this.Station.Enabled = false;
  100. this.Station.Location = new System.Drawing.Point(187, 36);
  101. this.Station.Name = "Station";
  102. this.Station.Size = new System.Drawing.Size(280, 28);
  103. this.Station.TabIndex = 8;
  104. //
  105. // label1
  106. //
  107. this.label1.AutoSize = true;
  108. this.label1.Location = new System.Drawing.Point(99, 39);
  109. this.label1.Name = "label1";
  110. this.label1.Size = new System.Drawing.Size(44, 18);
  111. this.label1.TabIndex = 0;
  112. this.label1.Text = "工位";
  113. //
  114. // groupBox2
  115. //
  116. this.groupBox2.Controls.Add(this.ErrorLab);
  117. this.groupBox2.Controls.Add(this.label3);
  118. this.groupBox2.Controls.Add(this.Barcode);
  119. this.groupBox2.Location = new System.Drawing.Point(33, 235);
  120. this.groupBox2.Name = "groupBox2";
  121. this.groupBox2.Size = new System.Drawing.Size(649, 92);
  122. this.groupBox2.TabIndex = 12;
  123. this.groupBox2.TabStop = false;
  124. this.groupBox2.Text = "扫码区域";
  125. //
  126. // ErrorLab
  127. //
  128. this.ErrorLab.AutoSize = true;
  129. this.ErrorLab.ForeColor = System.Drawing.Color.Red;
  130. this.ErrorLab.Location = new System.Drawing.Point(184, 55);
  131. this.ErrorLab.Name = "ErrorLab";
  132. this.ErrorLab.Size = new System.Drawing.Size(0, 18);
  133. this.ErrorLab.TabIndex = 7;
  134. //
  135. // label3
  136. //
  137. this.label3.AutoSize = true;
  138. this.label3.Location = new System.Drawing.Point(81, 27);
  139. this.label3.Name = "label3";
  140. this.label3.Size = new System.Drawing.Size(62, 18);
  141. this.label3.TabIndex = 6;
  142. this.label3.Text = "二维码";
  143. //
  144. // Barcode
  145. //
  146. this.Barcode.Location = new System.Drawing.Point(187, 24);
  147. this.Barcode.Name = "Barcode";
  148. this.Barcode.Size = new System.Drawing.Size(280, 28);
  149. this.Barcode.TabIndex = 5;
  150. this.Barcode.TextChanged += new System.EventHandler(this.Barcode_TextChanged);
  151. //
  152. // Cancel_btn
  153. //
  154. this.Cancel_btn.Location = new System.Drawing.Point(390, 355);
  155. this.Cancel_btn.Name = "Cancel_btn";
  156. this.Cancel_btn.Size = new System.Drawing.Size(87, 36);
  157. this.Cancel_btn.TabIndex = 13;
  158. this.Cancel_btn.Text = "取消";
  159. this.Cancel_btn.UseVisualStyleBackColor = true;
  160. this.Cancel_btn.Click += new System.EventHandler(this.Cancel_btn_Click);
  161. //
  162. // OK_btn
  163. //
  164. this.OK_btn.Location = new System.Drawing.Point(237, 355);
  165. this.OK_btn.Name = "OK_btn";
  166. this.OK_btn.Size = new System.Drawing.Size(87, 36);
  167. this.OK_btn.TabIndex = 14;
  168. this.OK_btn.Text = "确认";
  169. this.OK_btn.UseVisualStyleBackColor = true;
  170. this.OK_btn.Click += new System.EventHandler(this.OK_btn_Click);
  171. //
  172. // Dialog_MaterialVerify
  173. //
  174. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  175. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  176. this.ClientSize = new System.Drawing.Size(718, 419);
  177. this.Controls.Add(this.OK_btn);
  178. this.Controls.Add(this.Cancel_btn);
  179. this.Controls.Add(this.groupBox2);
  180. this.Controls.Add(this.groupBox1);
  181. this.Name = "Dialog_MaterialVerify";
  182. this.Text = "辅耗材上料";
  183. this.Load += new System.EventHandler(this.Dialog_MaterialVerify_S1_Load);
  184. this.groupBox1.ResumeLayout(false);
  185. this.groupBox1.PerformLayout();
  186. this.groupBox2.ResumeLayout(false);
  187. this.groupBox2.PerformLayout();
  188. this.ResumeLayout(false);
  189. }
  190. #endregion
  191. private GroupBox groupBox1;
  192. private GroupBox groupBox2;
  193. private Label ErrorLab;
  194. private Label label3;
  195. private TextBox Barcode;
  196. private Label label1;
  197. private TextBox Station;
  198. private Label label2;
  199. private TextBox Type;
  200. private Label label4;
  201. private TextBox SN;
  202. private Button Cancel_btn;
  203. private Button OK_btn;
  204. }
  205. }