AutoSMTRXY.Designer.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. namespace FileWatcher
  2. {
  3. partial class AutoSMTRXY
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.OperateResult = new System.Windows.Forms.RichTextBox();
  30. this.Clean = new System.Windows.Forms.Button();
  31. this.MakeCode_lable = new System.Windows.Forms.Label();
  32. this.Type = new System.Windows.Forms.ComboBox();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.AutoStart = new System.Windows.Forms.CheckBox();
  35. this.NowQTY = new System.Windows.Forms.TextBox();
  36. this.label4 = new System.Windows.Forms.Label();
  37. this.label5 = new System.Windows.Forms.Label();
  38. this.label2 = new System.Windows.Forms.Label();
  39. this.RemindTimer = new System.Windows.Forms.Timer(this.components);
  40. this.ms_sncode = new FileWatcher.EnterTextBox();
  41. this.ma_code = new FileWatcher.SearchTextBox();
  42. this.li_code = new FileWatcher.SearchTextBox();
  43. this.RemindVoice = new System.Windows.Forms.CheckBox();
  44. this.SN = new System.Windows.Forms.RadioButton();
  45. this.Counter = new System.Windows.Forms.RadioButton();
  46. this.SuspendLayout();
  47. //
  48. // OperateResult
  49. //
  50. this.OperateResult.Location = new System.Drawing.Point(892, 22);
  51. this.OperateResult.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  52. this.OperateResult.Name = "OperateResult";
  53. this.OperateResult.Size = new System.Drawing.Size(517, 535);
  54. this.OperateResult.TabIndex = 7;
  55. this.OperateResult.Text = "";
  56. //
  57. // Clean
  58. //
  59. this.Clean.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  60. this.Clean.Location = new System.Drawing.Point(1096, 580);
  61. this.Clean.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  62. this.Clean.Name = "Clean";
  63. this.Clean.Size = new System.Drawing.Size(112, 48);
  64. this.Clean.TabIndex = 8;
  65. this.Clean.Text = "清除";
  66. this.Clean.UseVisualStyleBackColor = true;
  67. this.Clean.Click += new System.EventHandler(this.Clean_Click);
  68. //
  69. // MakeCode_lable
  70. //
  71. this.MakeCode_lable.AutoSize = true;
  72. this.MakeCode_lable.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  73. this.MakeCode_lable.Location = new System.Drawing.Point(51, 60);
  74. this.MakeCode_lable.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  75. this.MakeCode_lable.Name = "MakeCode_lable";
  76. this.MakeCode_lable.Size = new System.Drawing.Size(104, 38);
  77. this.MakeCode_lable.TabIndex = 12;
  78. this.MakeCode_lable.Text = "工单号";
  79. //
  80. // Type
  81. //
  82. this.Type.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  83. this.Type.FormattingEnabled = true;
  84. this.Type.Items.AddRange(new object[] {
  85. "投入",
  86. "产出"});
  87. this.Type.Location = new System.Drawing.Point(221, 207);
  88. this.Type.Name = "Type";
  89. this.Type.Size = new System.Drawing.Size(436, 32);
  90. this.Type.TabIndex = 18;
  91. //
  92. // label1
  93. //
  94. this.label1.AutoSize = true;
  95. this.label1.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  96. this.label1.Location = new System.Drawing.Point(51, 201);
  97. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  98. this.label1.Name = "label1";
  99. this.label1.Size = new System.Drawing.Size(75, 38);
  100. this.label1.TabIndex = 19;
  101. this.label1.Text = "类型";
  102. //
  103. // AutoStart
  104. //
  105. this.AutoStart.AutoSize = true;
  106. this.AutoStart.Checked = true;
  107. this.AutoStart.CheckState = System.Windows.Forms.CheckState.Checked;
  108. this.AutoStart.Location = new System.Drawing.Point(695, 67);
  109. this.AutoStart.Name = "AutoStart";
  110. this.AutoStart.Size = new System.Drawing.Size(186, 28);
  111. this.AutoStart.TabIndex = 20;
  112. this.AutoStart.Text = "开机自动启动";
  113. this.AutoStart.UseVisualStyleBackColor = true;
  114. //
  115. // NowQTY
  116. //
  117. this.NowQTY.Location = new System.Drawing.Point(221, 286);
  118. this.NowQTY.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  119. this.NowQTY.Name = "NowQTY";
  120. this.NowQTY.Size = new System.Drawing.Size(146, 35);
  121. this.NowQTY.TabIndex = 26;
  122. //
  123. // label4
  124. //
  125. this.label4.AutoSize = true;
  126. this.label4.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  127. this.label4.Location = new System.Drawing.Point(51, 283);
  128. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  129. this.label4.Name = "label4";
  130. this.label4.Size = new System.Drawing.Size(133, 38);
  131. this.label4.TabIndex = 25;
  132. this.label4.Text = "当前计数";
  133. //
  134. // label5
  135. //
  136. this.label5.AutoSize = true;
  137. this.label5.Font = new System.Drawing.Font("微软雅黑", 12F);
  138. this.label5.Location = new System.Drawing.Point(51, 131);
  139. this.label5.Name = "label5";
  140. this.label5.Size = new System.Drawing.Size(82, 41);
  141. this.label5.TabIndex = 27;
  142. this.label5.Text = "线别";
  143. //
  144. // label2
  145. //
  146. this.label2.AutoSize = true;
  147. this.label2.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  148. this.label2.Location = new System.Drawing.Point(51, 364);
  149. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  150. this.label2.Name = "label2";
  151. this.label2.Size = new System.Drawing.Size(104, 38);
  152. this.label2.TabIndex = 34;
  153. this.label2.Text = "录入框";
  154. //
  155. // RemindTimer
  156. //
  157. this.RemindTimer.Interval = 5000;
  158. this.RemindTimer.Tick += new System.EventHandler(this.RemindTimer_Tick);
  159. //
  160. // ms_sncode
  161. //
  162. this.ms_sncode.AllPower = null;
  163. this.ms_sncode.BackColor = System.Drawing.Color.White;
  164. this.ms_sncode.ID = null;
  165. this.ms_sncode.Location = new System.Drawing.Point(221, 370);
  166. this.ms_sncode.Name = "ms_sncode";
  167. this.ms_sncode.Power = null;
  168. this.ms_sncode.Size = new System.Drawing.Size(333, 35);
  169. this.ms_sncode.Str = null;
  170. this.ms_sncode.Str1 = null;
  171. this.ms_sncode.Str2 = null;
  172. this.ms_sncode.TabIndex = 33;
  173. this.ms_sncode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ms_sncode_KeyDown);
  174. //
  175. // ma_code
  176. //
  177. this.ma_code.AllPower = null;
  178. this.ma_code.Caller = null;
  179. this.ma_code.Condition = null;
  180. this.ma_code.DBTitle = null;
  181. this.ma_code.FormName = null;
  182. this.ma_code.Location = new System.Drawing.Point(221, 54);
  183. this.ma_code.Name = "ma_code";
  184. this.ma_code.Power = null;
  185. this.ma_code.ReturnData = null;
  186. this.ma_code.SelectField = null;
  187. this.ma_code.SetValueField = null;
  188. this.ma_code.Size = new System.Drawing.Size(436, 41);
  189. this.ma_code.TabIndex = 29;
  190. this.ma_code.TableName = null;
  191. this.ma_code.TextBoxEnable = false;
  192. //
  193. // li_code
  194. //
  195. this.li_code.AllPower = null;
  196. this.li_code.Caller = null;
  197. this.li_code.Condition = null;
  198. this.li_code.DBTitle = null;
  199. this.li_code.FormName = null;
  200. this.li_code.Location = new System.Drawing.Point(221, 131);
  201. this.li_code.Name = "li_code";
  202. this.li_code.Power = null;
  203. this.li_code.ReturnData = null;
  204. this.li_code.SelectField = null;
  205. this.li_code.SetValueField = null;
  206. this.li_code.Size = new System.Drawing.Size(436, 41);
  207. this.li_code.TabIndex = 28;
  208. this.li_code.TableName = null;
  209. this.li_code.TextBoxEnable = false;
  210. //
  211. // RemindVoice
  212. //
  213. this.RemindVoice.AutoSize = true;
  214. this.RemindVoice.Checked = true;
  215. this.RemindVoice.CheckState = System.Windows.Forms.CheckState.Checked;
  216. this.RemindVoice.Location = new System.Drawing.Point(695, 131);
  217. this.RemindVoice.Name = "RemindVoice";
  218. this.RemindVoice.Size = new System.Drawing.Size(162, 28);
  219. this.RemindVoice.TabIndex = 35;
  220. this.RemindVoice.Text = "开启提示音";
  221. this.RemindVoice.UseVisualStyleBackColor = true;
  222. //
  223. // SN
  224. //
  225. this.SN.AutoSize = true;
  226. this.SN.Location = new System.Drawing.Point(221, 486);
  227. this.SN.Name = "SN";
  228. this.SN.Size = new System.Drawing.Size(113, 28);
  229. this.SN.TabIndex = 37;
  230. this.SN.Text = "扫描SN";
  231. this.SN.UseVisualStyleBackColor = true;
  232. //
  233. // Counter
  234. //
  235. this.Counter.AutoSize = true;
  236. this.Counter.Checked = true;
  237. this.Counter.Location = new System.Drawing.Point(357, 486);
  238. this.Counter.Name = "Counter";
  239. this.Counter.Size = new System.Drawing.Size(113, 28);
  240. this.Counter.TabIndex = 36;
  241. this.Counter.TabStop = true;
  242. this.Counter.Text = "计数器";
  243. this.Counter.UseVisualStyleBackColor = true;
  244. //
  245. // AutoSMTRXY
  246. //
  247. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  248. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  249. this.ClientSize = new System.Drawing.Size(1443, 640);
  250. this.Controls.Add(this.SN);
  251. this.Controls.Add(this.Counter);
  252. this.Controls.Add(this.RemindVoice);
  253. this.Controls.Add(this.label2);
  254. this.Controls.Add(this.ms_sncode);
  255. this.Controls.Add(this.ma_code);
  256. this.Controls.Add(this.li_code);
  257. this.Controls.Add(this.label5);
  258. this.Controls.Add(this.NowQTY);
  259. this.Controls.Add(this.label4);
  260. this.Controls.Add(this.AutoStart);
  261. this.Controls.Add(this.label1);
  262. this.Controls.Add(this.Type);
  263. this.Controls.Add(this.MakeCode_lable);
  264. this.Controls.Add(this.Clean);
  265. this.Controls.Add(this.OperateResult);
  266. this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  267. this.MaximizeBox = false;
  268. this.Name = "AutoSMTRXY";
  269. this.Text = "UAS设备数据解析 2023-06-29 10:05";
  270. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  271. this.Load += new System.EventHandler(this.Form1_Load);
  272. this.ResumeLayout(false);
  273. this.PerformLayout();
  274. }
  275. #endregion
  276. private System.Windows.Forms.RichTextBox OperateResult;
  277. private System.Windows.Forms.Button Clean;
  278. private System.Windows.Forms.Label MakeCode_lable;
  279. private System.Windows.Forms.ComboBox Type;
  280. private System.Windows.Forms.Label label1;
  281. private System.Windows.Forms.CheckBox AutoStart;
  282. private System.Windows.Forms.TextBox NowQTY;
  283. private System.Windows.Forms.Label label4;
  284. private SearchTextBox li_code;
  285. private System.Windows.Forms.Label label5;
  286. private SearchTextBox ma_code;
  287. private EnterTextBox ms_sncode;
  288. private System.Windows.Forms.Label label2;
  289. private System.Windows.Forms.Timer RemindTimer;
  290. private System.Windows.Forms.CheckBox RemindVoice;
  291. private System.Windows.Forms.RadioButton SN;
  292. private System.Windows.Forms.RadioButton Counter;
  293. }
  294. }