ProjectConfigForm.Designer.cs 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. namespace Oreo.BigBirdDeployer.Views
  2. {
  3. partial class ProjectConfigForm
  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.BTSave = new System.Windows.Forms.Button();
  29. this.BTCancel = new System.Windows.Forms.Button();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.TBName = new System.Windows.Forms.TextBox();
  33. this.TBFolder = new System.Windows.Forms.TextBox();
  34. this.TBJarFile = new System.Windows.Forms.TextBox();
  35. this.TBPort = new System.Windows.Forms.TextBox();
  36. this.TBVersionCache = new System.Windows.Forms.TextBox();
  37. this.label3 = new System.Windows.Forms.Label();
  38. this.label4 = new System.Windows.Forms.Label();
  39. this.label5 = new System.Windows.Forms.Label();
  40. this.LBDesc = new System.Windows.Forms.Label();
  41. this.SuspendLayout();
  42. //
  43. // BTSave
  44. //
  45. this.BTSave.Location = new System.Drawing.Point(262, 268);
  46. this.BTSave.Name = "BTSave";
  47. this.BTSave.Size = new System.Drawing.Size(75, 23);
  48. this.BTSave.TabIndex = 0;
  49. this.BTSave.Text = "保存";
  50. this.BTSave.UseVisualStyleBackColor = true;
  51. this.BTSave.Click += new System.EventHandler(this.BTSave_Click);
  52. //
  53. // BTCancel
  54. //
  55. this.BTCancel.Location = new System.Drawing.Point(368, 268);
  56. this.BTCancel.Name = "BTCancel";
  57. this.BTCancel.Size = new System.Drawing.Size(75, 23);
  58. this.BTCancel.TabIndex = 1;
  59. this.BTCancel.Text = "取消";
  60. this.BTCancel.UseVisualStyleBackColor = true;
  61. this.BTCancel.Click += new System.EventHandler(this.BTCancel_Click);
  62. //
  63. // label1
  64. //
  65. this.label1.AutoSize = true;
  66. this.label1.Location = new System.Drawing.Point(27, 34);
  67. this.label1.Name = "label1";
  68. this.label1.Size = new System.Drawing.Size(53, 12);
  69. this.label1.TabIndex = 2;
  70. this.label1.Text = "工程名称";
  71. //
  72. // label2
  73. //
  74. this.label2.AutoSize = true;
  75. this.label2.Location = new System.Drawing.Point(27, 79);
  76. this.label2.Name = "label2";
  77. this.label2.Size = new System.Drawing.Size(65, 12);
  78. this.label2.TabIndex = 3;
  79. this.label2.Text = "文件夹名称";
  80. //
  81. // TBName
  82. //
  83. this.TBName.Location = new System.Drawing.Point(140, 30);
  84. this.TBName.Name = "TBName";
  85. this.TBName.Size = new System.Drawing.Size(303, 21);
  86. this.TBName.TabIndex = 4;
  87. //
  88. // TBFolder
  89. //
  90. this.TBFolder.Location = new System.Drawing.Point(140, 75);
  91. this.TBFolder.Name = "TBFolder";
  92. this.TBFolder.Size = new System.Drawing.Size(303, 21);
  93. this.TBFolder.TabIndex = 5;
  94. //
  95. // TBJarFile
  96. //
  97. this.TBJarFile.Location = new System.Drawing.Point(140, 120);
  98. this.TBJarFile.Name = "TBJarFile";
  99. this.TBJarFile.Size = new System.Drawing.Size(303, 21);
  100. this.TBJarFile.TabIndex = 6;
  101. //
  102. // TBPort
  103. //
  104. this.TBPort.Location = new System.Drawing.Point(140, 165);
  105. this.TBPort.Name = "TBPort";
  106. this.TBPort.Size = new System.Drawing.Size(303, 21);
  107. this.TBPort.TabIndex = 7;
  108. //
  109. // TBVersionCache
  110. //
  111. this.TBVersionCache.Location = new System.Drawing.Point(140, 210);
  112. this.TBVersionCache.Name = "TBVersionCache";
  113. this.TBVersionCache.Size = new System.Drawing.Size(303, 21);
  114. this.TBVersionCache.TabIndex = 8;
  115. //
  116. // label3
  117. //
  118. this.label3.AutoSize = true;
  119. this.label3.Location = new System.Drawing.Point(27, 124);
  120. this.label3.Name = "label3";
  121. this.label3.Size = new System.Drawing.Size(83, 12);
  122. this.label3.TabIndex = 10;
  123. this.label3.Text = "运行Jar包名称";
  124. //
  125. // label4
  126. //
  127. this.label4.AutoSize = true;
  128. this.label4.Location = new System.Drawing.Point(27, 169);
  129. this.label4.Name = "label4";
  130. this.label4.Size = new System.Drawing.Size(41, 12);
  131. this.label4.TabIndex = 11;
  132. this.label4.Text = "端口号";
  133. //
  134. // label5
  135. //
  136. this.label5.AutoSize = true;
  137. this.label5.Location = new System.Drawing.Point(27, 214);
  138. this.label5.Name = "label5";
  139. this.label5.Size = new System.Drawing.Size(83, 12);
  140. this.label5.TabIndex = 12;
  141. this.label5.Text = " 版本缓存个数";
  142. //
  143. // LBDesc
  144. //
  145. this.LBDesc.AutoSize = true;
  146. this.LBDesc.Location = new System.Drawing.Point(29, 278);
  147. this.LBDesc.Name = "LBDesc";
  148. this.LBDesc.Size = new System.Drawing.Size(77, 12);
  149. this.LBDesc.TabIndex = 13;
  150. this.LBDesc.Text = "执行结果描述";
  151. //
  152. // ProjectConfigForm
  153. //
  154. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  155. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  156. this.ClientSize = new System.Drawing.Size(475, 321);
  157. this.Controls.Add(this.LBDesc);
  158. this.Controls.Add(this.label5);
  159. this.Controls.Add(this.label4);
  160. this.Controls.Add(this.label3);
  161. this.Controls.Add(this.TBVersionCache);
  162. this.Controls.Add(this.TBPort);
  163. this.Controls.Add(this.TBJarFile);
  164. this.Controls.Add(this.TBFolder);
  165. this.Controls.Add(this.TBName);
  166. this.Controls.Add(this.label2);
  167. this.Controls.Add(this.label1);
  168. this.Controls.Add(this.BTCancel);
  169. this.Controls.Add(this.BTSave);
  170. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  171. this.MaximizeBox = false;
  172. this.MinimizeBox = false;
  173. this.Name = "ProjectConfigForm";
  174. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  175. this.Text = "工程配置";
  176. this.Load += new System.EventHandler(this.ProjectConfigForm_Load);
  177. this.ResumeLayout(false);
  178. this.PerformLayout();
  179. }
  180. #endregion
  181. private System.Windows.Forms.Button BTSave;
  182. private System.Windows.Forms.Button BTCancel;
  183. private System.Windows.Forms.Label label1;
  184. private System.Windows.Forms.Label label2;
  185. private System.Windows.Forms.TextBox TBName;
  186. private System.Windows.Forms.TextBox TBFolder;
  187. private System.Windows.Forms.TextBox TBJarFile;
  188. private System.Windows.Forms.TextBox TBPort;
  189. private System.Windows.Forms.TextBox TBVersionCache;
  190. private System.Windows.Forms.Label label3;
  191. private System.Windows.Forms.Label label4;
  192. private System.Windows.Forms.Label label5;
  193. private System.Windows.Forms.Label LBDesc;
  194. }
  195. }