FormMain.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. namespace ReleaseHelper
  2. {
  3. partial class FormMain
  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.statusStrip1 = new System.Windows.Forms.StatusStrip();
  29. this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
  30. this.toolStripProgressBarRelease = new System.Windows.Forms.ToolStripProgressBar();
  31. this.toolStripStatusLabelStepNow = new System.Windows.Forms.ToolStripStatusLabel();
  32. this.button1 = new System.Windows.Forms.Button();
  33. this.label10 = new System.Windows.Forms.Label();
  34. this.label9 = new System.Windows.Forms.Label();
  35. this.label8 = new System.Windows.Forms.Label();
  36. this.label7 = new System.Windows.Forms.Label();
  37. this.label6 = new System.Windows.Forms.Label();
  38. this.label5 = new System.Windows.Forms.Label();
  39. this.textBoxLocalFile = new System.Windows.Forms.TextBox();
  40. this.textBoxOssPath = new System.Windows.Forms.TextBox();
  41. this.textBoxLatestVersion = new System.Windows.Forms.TextBox();
  42. this.textBoxNowVersion = new System.Windows.Forms.TextBox();
  43. this.textBoxUsername = new System.Windows.Forms.TextBox();
  44. this.textBoxPassword = new System.Windows.Forms.TextBox();
  45. this.statusStrip1.SuspendLayout();
  46. this.SuspendLayout();
  47. //
  48. // statusStrip1
  49. //
  50. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  51. this.toolStripStatusLabel1,
  52. this.toolStripProgressBarRelease,
  53. this.toolStripStatusLabelStepNow});
  54. this.statusStrip1.Location = new System.Drawing.Point(0, 222);
  55. this.statusStrip1.Name = "statusStrip1";
  56. this.statusStrip1.Size = new System.Drawing.Size(772, 22);
  57. this.statusStrip1.SizingGrip = false;
  58. this.statusStrip1.TabIndex = 4;
  59. this.statusStrip1.Text = "statusStrip1";
  60. //
  61. // toolStripStatusLabel1
  62. //
  63. this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
  64. this.toolStripStatusLabel1.Size = new System.Drawing.Size(32, 17);
  65. this.toolStripStatusLabel1.Text = "进度";
  66. //
  67. // toolStripProgressBarRelease
  68. //
  69. this.toolStripProgressBarRelease.Name = "toolStripProgressBarRelease";
  70. this.toolStripProgressBarRelease.Size = new System.Drawing.Size(500, 16);
  71. this.toolStripProgressBarRelease.Step = 1;
  72. //
  73. // toolStripStatusLabelStepNow
  74. //
  75. this.toolStripStatusLabelStepNow.Name = "toolStripStatusLabelStepNow";
  76. this.toolStripStatusLabelStepNow.Size = new System.Drawing.Size(0, 17);
  77. //
  78. // button1
  79. //
  80. this.button1.Location = new System.Drawing.Point(118, 189);
  81. this.button1.Name = "button1";
  82. this.button1.Size = new System.Drawing.Size(75, 23);
  83. this.button1.TabIndex = 17;
  84. this.button1.Text = "更新上线";
  85. this.button1.UseVisualStyleBackColor = true;
  86. this.button1.Click += new System.EventHandler(this.button1_Click);
  87. //
  88. // label10
  89. //
  90. this.label10.AutoSize = true;
  91. this.label10.Location = new System.Drawing.Point(57, 16);
  92. this.label10.Name = "label10";
  93. this.label10.Size = new System.Drawing.Size(53, 12);
  94. this.label10.TabIndex = 11;
  95. this.label10.Text = "本地文件";
  96. //
  97. // label9
  98. //
  99. this.label9.AutoSize = true;
  100. this.label9.Location = new System.Drawing.Point(57, 43);
  101. this.label9.Name = "label9";
  102. this.label9.Size = new System.Drawing.Size(53, 12);
  103. this.label9.TabIndex = 12;
  104. this.label9.Text = "发布路径";
  105. //
  106. // label8
  107. //
  108. this.label8.AutoSize = true;
  109. this.label8.Location = new System.Drawing.Point(9, 70);
  110. this.label8.Name = "label8";
  111. this.label8.Size = new System.Drawing.Size(101, 12);
  112. this.label8.TabIndex = 13;
  113. this.label8.Text = "最近一次更新版本";
  114. //
  115. // label7
  116. //
  117. this.label7.AutoSize = true;
  118. this.label7.Location = new System.Drawing.Point(57, 97);
  119. this.label7.Name = "label7";
  120. this.label7.Size = new System.Drawing.Size(53, 12);
  121. this.label7.TabIndex = 14;
  122. this.label7.Text = "当前版本";
  123. //
  124. // label6
  125. //
  126. this.label6.AutoSize = true;
  127. this.label6.Location = new System.Drawing.Point(45, 124);
  128. this.label6.Name = "label6";
  129. this.label6.Size = new System.Drawing.Size(65, 12);
  130. this.label6.TabIndex = 15;
  131. this.label6.Text = "更新管理员";
  132. //
  133. // label5
  134. //
  135. this.label5.AutoSize = true;
  136. this.label5.Location = new System.Drawing.Point(21, 151);
  137. this.label5.Name = "label5";
  138. this.label5.Size = new System.Drawing.Size(89, 12);
  139. this.label5.TabIndex = 16;
  140. this.label5.Text = "更新管理员密码";
  141. //
  142. // textBoxLocalFile
  143. //
  144. this.textBoxLocalFile.Location = new System.Drawing.Point(118, 12);
  145. this.textBoxLocalFile.Name = "textBoxLocalFile";
  146. this.textBoxLocalFile.ReadOnly = true;
  147. this.textBoxLocalFile.Size = new System.Drawing.Size(642, 21);
  148. this.textBoxLocalFile.TabIndex = 5;
  149. //
  150. // textBoxOssPath
  151. //
  152. this.textBoxOssPath.Location = new System.Drawing.Point(118, 39);
  153. this.textBoxOssPath.Name = "textBoxOssPath";
  154. this.textBoxOssPath.ReadOnly = true;
  155. this.textBoxOssPath.Size = new System.Drawing.Size(642, 21);
  156. this.textBoxOssPath.TabIndex = 6;
  157. //
  158. // textBoxLatestVersion
  159. //
  160. this.textBoxLatestVersion.Location = new System.Drawing.Point(118, 66);
  161. this.textBoxLatestVersion.Name = "textBoxLatestVersion";
  162. this.textBoxLatestVersion.ReadOnly = true;
  163. this.textBoxLatestVersion.Size = new System.Drawing.Size(642, 21);
  164. this.textBoxLatestVersion.TabIndex = 7;
  165. //
  166. // textBoxNowVersion
  167. //
  168. this.textBoxNowVersion.Location = new System.Drawing.Point(118, 93);
  169. this.textBoxNowVersion.MaxLength = 11;
  170. this.textBoxNowVersion.Name = "textBoxNowVersion";
  171. this.textBoxNowVersion.Size = new System.Drawing.Size(642, 21);
  172. this.textBoxNowVersion.TabIndex = 8;
  173. //
  174. // textBoxUsername
  175. //
  176. this.textBoxUsername.Location = new System.Drawing.Point(118, 120);
  177. this.textBoxUsername.Name = "textBoxUsername";
  178. this.textBoxUsername.Size = new System.Drawing.Size(642, 21);
  179. this.textBoxUsername.TabIndex = 9;
  180. //
  181. // textBoxPassword
  182. //
  183. this.textBoxPassword.Location = new System.Drawing.Point(118, 147);
  184. this.textBoxPassword.Name = "textBoxPassword";
  185. this.textBoxPassword.Size = new System.Drawing.Size(642, 21);
  186. this.textBoxPassword.TabIndex = 10;
  187. this.textBoxPassword.UseSystemPasswordChar = true;
  188. //
  189. // FormMain
  190. //
  191. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  192. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  193. this.ClientSize = new System.Drawing.Size(772, 244);
  194. this.Controls.Add(this.button1);
  195. this.Controls.Add(this.label10);
  196. this.Controls.Add(this.label9);
  197. this.Controls.Add(this.label8);
  198. this.Controls.Add(this.label7);
  199. this.Controls.Add(this.label6);
  200. this.Controls.Add(this.label5);
  201. this.Controls.Add(this.textBoxLocalFile);
  202. this.Controls.Add(this.textBoxOssPath);
  203. this.Controls.Add(this.textBoxLatestVersion);
  204. this.Controls.Add(this.textBoxNowVersion);
  205. this.Controls.Add(this.textBoxUsername);
  206. this.Controls.Add(this.textBoxPassword);
  207. this.Controls.Add(this.statusStrip1);
  208. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  209. this.MaximizeBox = false;
  210. this.Name = "FormMain";
  211. this.Text = "大教研扫描应用发布助手";
  212. this.statusStrip1.ResumeLayout(false);
  213. this.statusStrip1.PerformLayout();
  214. this.ResumeLayout(false);
  215. this.PerformLayout();
  216. }
  217. #endregion
  218. private System.Windows.Forms.StatusStrip statusStrip1;
  219. private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
  220. private System.Windows.Forms.ToolStripProgressBar toolStripProgressBarRelease;
  221. private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelStepNow;
  222. private System.Windows.Forms.Button button1;
  223. private System.Windows.Forms.Label label10;
  224. private System.Windows.Forms.Label label9;
  225. private System.Windows.Forms.Label label8;
  226. private System.Windows.Forms.Label label7;
  227. private System.Windows.Forms.Label label6;
  228. private System.Windows.Forms.Label label5;
  229. private System.Windows.Forms.TextBox textBoxLocalFile;
  230. private System.Windows.Forms.TextBox textBoxOssPath;
  231. private System.Windows.Forms.TextBox textBoxLatestVersion;
  232. private System.Windows.Forms.TextBox textBoxNowVersion;
  233. private System.Windows.Forms.TextBox textBoxUsername;
  234. private System.Windows.Forms.TextBox textBoxPassword;
  235. }
  236. }