Form2.Designer.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. namespace WindowsFormsApplication1
  2. {
  3. partial class Form2
  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.button2 = new System.Windows.Forms.Button();
  30. this.button3 = new System.Windows.Forms.Button();
  31. this.button4 = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // button1
  35. //
  36. this.button1.Location = new System.Drawing.Point(409, 64);
  37. this.button1.Name = "button1";
  38. this.button1.Size = new System.Drawing.Size(148, 48);
  39. this.button1.TabIndex = 0;
  40. this.button1.Text = "其他出库单到中间";
  41. this.button1.UseVisualStyleBackColor = true;
  42. this.button1.Click += new System.EventHandler(this.button1_Click);
  43. //
  44. // button2
  45. //
  46. this.button2.Location = new System.Drawing.Point(183, 160);
  47. this.button2.Name = "button2";
  48. this.button2.Size = new System.Drawing.Size(148, 48);
  49. this.button2.TabIndex = 1;
  50. this.button2.Text = "采购入库单到中间";
  51. this.button2.UseVisualStyleBackColor = true;
  52. this.button2.Click += new System.EventHandler(this.button2_Click);
  53. //
  54. // button3
  55. //
  56. this.button3.Location = new System.Drawing.Point(409, 160);
  57. this.button3.Name = "button3";
  58. this.button3.Size = new System.Drawing.Size(148, 48);
  59. this.button3.TabIndex = 2;
  60. this.button3.Text = "材料出库单到中间";
  61. this.button3.UseVisualStyleBackColor = true;
  62. this.button3.Click += new System.EventHandler(this.button3_Click);
  63. //
  64. // button4
  65. //
  66. this.button4.Location = new System.Drawing.Point(183, 64);
  67. this.button4.Name = "button4";
  68. this.button4.Size = new System.Drawing.Size(148, 48);
  69. this.button4.TabIndex = 3;
  70. this.button4.Text = "其他入库单到中间";
  71. this.button4.UseVisualStyleBackColor = true;
  72. this.button4.Click += new System.EventHandler(this.button4_Click);
  73. //
  74. // Form2
  75. //
  76. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  77. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  78. this.ClientSize = new System.Drawing.Size(744, 482);
  79. this.Controls.Add(this.button4);
  80. this.Controls.Add(this.button3);
  81. this.Controls.Add(this.button2);
  82. this.Controls.Add(this.button1);
  83. this.Name = "Form2";
  84. this.Text = "Form2";
  85. this.ResumeLayout(false);
  86. }
  87. #endregion
  88. private System.Windows.Forms.Button button1;
  89. private System.Windows.Forms.Button button2;
  90. private System.Windows.Forms.Button button3;
  91. private System.Windows.Forms.Button button4;
  92. }
  93. }