FrmBarCode.Designer.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. 
  2. namespace NXWMS.Forms
  3. {
  4. partial class FrmBarCode
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  30. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  31. this.SuspendLayout();
  32. //
  33. // pictureBox1
  34. //
  35. this.pictureBox1.Location = new System.Drawing.Point(139, 54);
  36. this.pictureBox1.Name = "pictureBox1";
  37. this.pictureBox1.Size = new System.Drawing.Size(496, 323);
  38. this.pictureBox1.TabIndex = 0;
  39. this.pictureBox1.TabStop = false;
  40. //
  41. // FrmBarCode
  42. //
  43. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  44. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  45. this.ClientSize = new System.Drawing.Size(800, 450);
  46. this.Controls.Add(this.pictureBox1);
  47. this.Name = "FrmBarCode";
  48. this.Text = "FrmBarCode";
  49. this.Load += new System.EventHandler(this.FrmBarCode_Load);
  50. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  51. this.ResumeLayout(false);
  52. }
  53. #endregion
  54. private System.Windows.Forms.PictureBox pictureBox1;
  55. }
  56. }