Form1.Designer.cs 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. namespace YlInit
  2. {
  3. partial class Form1
  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.button1 = new System.Windows.Forms.Button();
  29. this.button2 = new System.Windows.Forms.Button();
  30. this.button3 = new System.Windows.Forms.Button();
  31. this.SuspendLayout();
  32. //
  33. // button1
  34. //
  35. this.button1.Location = new System.Drawing.Point(39, 38);
  36. this.button1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  37. this.button1.Name = "button1";
  38. this.button1.Size = new System.Drawing.Size(104, 41);
  39. this.button1.TabIndex = 0;
  40. this.button1.Tag = "Inventory";
  41. this.button1.Text = "存货";
  42. this.button1.UseVisualStyleBackColor = true;
  43. this.button1.Click += new System.EventHandler(this.process_Click);
  44. //
  45. // button2
  46. //
  47. this.button2.Location = new System.Drawing.Point(182, 38);
  48. this.button2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  49. this.button2.Name = "button2";
  50. this.button2.Size = new System.Drawing.Size(104, 41);
  51. this.button2.TabIndex = 1;
  52. this.button2.Tag = "Warehouse";
  53. this.button2.Text = "仓库";
  54. this.button2.UseVisualStyleBackColor = true;
  55. this.button2.Click += new System.EventHandler(this.process_Click);
  56. //
  57. // button3
  58. //
  59. this.button3.Location = new System.Drawing.Point(332, 38);
  60. this.button3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  61. this.button3.Name = "button3";
  62. this.button3.Size = new System.Drawing.Size(104, 41);
  63. this.button3.TabIndex = 2;
  64. this.button3.Tag = "Vendor";
  65. this.button3.Text = "供应商";
  66. this.button3.UseVisualStyleBackColor = true;
  67. this.button3.Click += new System.EventHandler(this.process_Click);
  68. //
  69. // Form1
  70. //
  71. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  72. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  73. this.ClientSize = new System.Drawing.Size(568, 436);
  74. this.Controls.Add(this.button3);
  75. this.Controls.Add(this.button2);
  76. this.Controls.Add(this.button1);
  77. this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  78. this.Name = "Form1";
  79. this.Text = "数据初始化";
  80. this.ResumeLayout(false);
  81. }
  82. #endregion
  83. private System.Windows.Forms.Button button1;
  84. private System.Windows.Forms.Button button2;
  85. private System.Windows.Forms.Button button3;
  86. }
  87. }