Form1.Designer.cs 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. namespace Version.Builder
  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.LbResult = new System.Windows.Forms.Label();
  29. this.LbTitle = new System.Windows.Forms.Label();
  30. this.TbPath = new System.Windows.Forms.TextBox();
  31. this.BtBuild = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // LbResult
  35. //
  36. this.LbResult.BackColor = System.Drawing.Color.White;
  37. this.LbResult.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  38. this.LbResult.Location = new System.Drawing.Point(23, 132);
  39. this.LbResult.Name = "LbResult";
  40. this.LbResult.Size = new System.Drawing.Size(453, 23);
  41. this.LbResult.TabIndex = 7;
  42. this.LbResult.Text = "就绪";
  43. this.LbResult.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  44. //
  45. // LbTitle
  46. //
  47. this.LbTitle.AutoSize = true;
  48. this.LbTitle.Location = new System.Drawing.Point(21, 19);
  49. this.LbTitle.Name = "LbTitle";
  50. this.LbTitle.Size = new System.Drawing.Size(77, 12);
  51. this.LbTitle.TabIndex = 6;
  52. this.LbTitle.Text = "请输入路径:";
  53. //
  54. // TbPath
  55. //
  56. this.TbPath.Location = new System.Drawing.Point(23, 47);
  57. this.TbPath.Name = "TbPath";
  58. this.TbPath.Size = new System.Drawing.Size(453, 21);
  59. this.TbPath.TabIndex = 5;
  60. //
  61. // BtBuild
  62. //
  63. this.BtBuild.Location = new System.Drawing.Point(401, 87);
  64. this.BtBuild.Name = "BtBuild";
  65. this.BtBuild.Size = new System.Drawing.Size(75, 23);
  66. this.BtBuild.TabIndex = 4;
  67. this.BtBuild.Text = "生成";
  68. this.BtBuild.UseVisualStyleBackColor = true;
  69. this.BtBuild.Click += new System.EventHandler(this.BtBuild_Click);
  70. //
  71. // Form1
  72. //
  73. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  74. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  75. this.ClientSize = new System.Drawing.Size(515, 185);
  76. this.Controls.Add(this.LbResult);
  77. this.Controls.Add(this.LbTitle);
  78. this.Controls.Add(this.TbPath);
  79. this.Controls.Add(this.BtBuild);
  80. this.Name = "Form1";
  81. this.Text = "Form1";
  82. this.ResumeLayout(false);
  83. this.PerformLayout();
  84. }
  85. #endregion
  86. private System.Windows.Forms.Label LbResult;
  87. private System.Windows.Forms.Label LbTitle;
  88. private System.Windows.Forms.TextBox TbPath;
  89. private System.Windows.Forms.Button BtBuild;
  90. }
  91. }