BandBarodeDialog.Designer.cs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. namespace MainForm.FaForm
  2. {
  3. partial class BandBarodeDialog
  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.button1 = new System.Windows.Forms.Button();
  29. this.ProductBarcode = new System.Windows.Forms.TextBox();
  30. this.CarrierBarcode = new System.Windows.Forms.TextBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.PCBBarcode = new System.Windows.Forms.TextBox();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.ErrorLab = new System.Windows.Forms.Label();
  36. this.SuspendLayout();
  37. //
  38. // button1
  39. //
  40. this.button1.Location = new System.Drawing.Point(530, 251);
  41. this.button1.Name = "button1";
  42. this.button1.Size = new System.Drawing.Size(135, 45);
  43. this.button1.TabIndex = 0;
  44. this.button1.Text = "取消";
  45. this.button1.UseVisualStyleBackColor = true;
  46. this.button1.Visible = false;
  47. this.button1.Click += new System.EventHandler(this.button1_Click);
  48. //
  49. // ProductBarcode
  50. //
  51. this.ProductBarcode.Location = new System.Drawing.Point(230, 108);
  52. this.ProductBarcode.Name = "ProductBarcode";
  53. this.ProductBarcode.ReadOnly = true;
  54. this.ProductBarcode.Size = new System.Drawing.Size(280, 28);
  55. this.ProductBarcode.TabIndex = 1;
  56. //
  57. // CarrierBarcode
  58. //
  59. this.CarrierBarcode.Location = new System.Drawing.Point(230, 47);
  60. this.CarrierBarcode.Name = "CarrierBarcode";
  61. this.CarrierBarcode.ReadOnly = true;
  62. this.CarrierBarcode.Size = new System.Drawing.Size(280, 28);
  63. this.CarrierBarcode.TabIndex = 2;
  64. //
  65. // label1
  66. //
  67. this.label1.AutoSize = true;
  68. this.label1.Location = new System.Drawing.Point(124, 50);
  69. this.label1.Name = "label1";
  70. this.label1.Size = new System.Drawing.Size(62, 18);
  71. this.label1.TabIndex = 3;
  72. this.label1.Text = "载具码";
  73. //
  74. // label2
  75. //
  76. this.label2.AutoSize = true;
  77. this.label2.Location = new System.Drawing.Point(124, 111);
  78. this.label2.Name = "label2";
  79. this.label2.Size = new System.Drawing.Size(62, 18);
  80. this.label2.TabIndex = 4;
  81. this.label2.Text = "产品码";
  82. //
  83. // PCBBarcode
  84. //
  85. this.PCBBarcode.Location = new System.Drawing.Point(230, 172);
  86. this.PCBBarcode.Name = "PCBBarcode";
  87. this.PCBBarcode.Size = new System.Drawing.Size(280, 28);
  88. this.PCBBarcode.TabIndex = 5;
  89. this.PCBBarcode.TextChanged += new System.EventHandler(this.PCBBarcode_TextChanged);
  90. //
  91. // label3
  92. //
  93. this.label3.AutoSize = true;
  94. this.label3.Location = new System.Drawing.Point(133, 175);
  95. this.label3.Name = "label3";
  96. this.label3.Size = new System.Drawing.Size(53, 18);
  97. this.label3.TabIndex = 6;
  98. this.label3.Text = "PCB码";
  99. //
  100. // ErrorLab
  101. //
  102. this.ErrorLab.AutoSize = true;
  103. this.ErrorLab.ForeColor = System.Drawing.Color.Red;
  104. this.ErrorLab.Location = new System.Drawing.Point(227, 216);
  105. this.ErrorLab.Name = "ErrorLab";
  106. this.ErrorLab.Size = new System.Drawing.Size(0, 18);
  107. this.ErrorLab.TabIndex = 7;
  108. //
  109. // BandBarodeDialog
  110. //
  111. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  112. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  113. this.ClientSize = new System.Drawing.Size(725, 328);
  114. this.Controls.Add(this.ErrorLab);
  115. this.Controls.Add(this.label3);
  116. this.Controls.Add(this.PCBBarcode);
  117. this.Controls.Add(this.label2);
  118. this.Controls.Add(this.label1);
  119. this.Controls.Add(this.CarrierBarcode);
  120. this.Controls.Add(this.ProductBarcode);
  121. this.Controls.Add(this.button1);
  122. this.Name = "BandBarodeDialog";
  123. this.Text = "BandBarodeDialog";
  124. this.Load += new System.EventHandler(this.BandBarodeDialog_Load);
  125. this.ResumeLayout(false);
  126. this.PerformLayout();
  127. }
  128. #endregion
  129. private System.Windows.Forms.Button button1;
  130. private System.Windows.Forms.TextBox ProductBarcode;
  131. private System.Windows.Forms.TextBox CarrierBarcode;
  132. private System.Windows.Forms.Label label1;
  133. private System.Windows.Forms.Label label2;
  134. private System.Windows.Forms.TextBox PCBBarcode;
  135. private System.Windows.Forms.Label label3;
  136. private System.Windows.Forms.Label ErrorLab;
  137. }
  138. }