Form1.Designer.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. 
  2. namespace ServerControl
  3. {
  4. partial class Form1
  5. {
  6. /// <summary>
  7. /// Обязательная переменная конструктора.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Освободить все используемые ресурсы.
  12. /// </summary>
  13. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Код, автоматически созданный конструктором форм Windows
  23. /// <summary>
  24. /// Требуемый метод для поддержки конструктора — не изменяйте
  25. /// содержимое этого метода с помощью редактора кода.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  31. this.groupBox1 = new System.Windows.Forms.GroupBox();
  32. this.textBox1 = new System.Windows.Forms.TextBox();
  33. this.nginxDisconnect = new System.Windows.Forms.Button();
  34. this.nginxConnect = new System.Windows.Forms.Button();
  35. this.nginxStatus = new System.Windows.Forms.Label();
  36. this.pythonGroup = new System.Windows.Forms.GroupBox();
  37. this.richTextBox1 = new System.Windows.Forms.RichTextBox();
  38. this.textBox2 = new System.Windows.Forms.TextBox();
  39. this.pythonDisconnect = new System.Windows.Forms.Button();
  40. this.pythonConnect = new System.Windows.Forms.Button();
  41. this.pythonStatus = new System.Windows.Forms.Label();
  42. this.ngrok = new System.Windows.Forms.GroupBox();
  43. this.textBox3 = new System.Windows.Forms.TextBox();
  44. this.ngrokDisconnect = new System.Windows.Forms.Button();
  45. this.ngrokShowHide = new System.Windows.Forms.Button();
  46. this.ngrokConnect = new System.Windows.Forms.Button();
  47. this.ngrokStatus = new System.Windows.Forms.Label();
  48. this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
  49. this.exitMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
  50. this.exit = new System.Windows.Forms.ToolStripMenuItem();
  51. this.groupBox1.SuspendLayout();
  52. this.pythonGroup.SuspendLayout();
  53. this.ngrok.SuspendLayout();
  54. this.exitMenu.SuspendLayout();
  55. this.SuspendLayout();
  56. //
  57. // groupBox1
  58. //
  59. this.groupBox1.Controls.Add(this.textBox1);
  60. this.groupBox1.Controls.Add(this.nginxDisconnect);
  61. this.groupBox1.Controls.Add(this.nginxConnect);
  62. this.groupBox1.Controls.Add(this.nginxStatus);
  63. this.groupBox1.Font = new System.Drawing.Font("Segoe UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  64. this.groupBox1.Location = new System.Drawing.Point(13, 13);
  65. this.groupBox1.Name = "groupBox1";
  66. this.groupBox1.Size = new System.Drawing.Size(777, 229);
  67. this.groupBox1.TabIndex = 1;
  68. this.groupBox1.TabStop = false;
  69. this.groupBox1.Text = "nginx";
  70. //
  71. // textBox1
  72. //
  73. this.textBox1.Location = new System.Drawing.Point(11, 184);
  74. this.textBox1.Name = "textBox1";
  75. this.textBox1.Size = new System.Drawing.Size(258, 30);
  76. this.textBox1.TabIndex = 3;
  77. this.textBox1.Text = "C:\\nginx-1.22.0";
  78. //
  79. // nginxDisconnect
  80. //
  81. this.nginxDisconnect.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  82. this.nginxDisconnect.Location = new System.Drawing.Point(11, 129);
  83. this.nginxDisconnect.Name = "nginxDisconnect";
  84. this.nginxDisconnect.Size = new System.Drawing.Size(258, 35);
  85. this.nginxDisconnect.TabIndex = 2;
  86. this.nginxDisconnect.Text = "Отключить";
  87. this.nginxDisconnect.UseVisualStyleBackColor = true;
  88. this.nginxDisconnect.Click += new System.EventHandler(this.nginxDisconnect_Click);
  89. //
  90. // nginxConnect
  91. //
  92. this.nginxConnect.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  93. this.nginxConnect.Location = new System.Drawing.Point(11, 88);
  94. this.nginxConnect.Name = "nginxConnect";
  95. this.nginxConnect.Size = new System.Drawing.Size(258, 35);
  96. this.nginxConnect.TabIndex = 1;
  97. this.nginxConnect.Text = "Подключить";
  98. this.nginxConnect.UseVisualStyleBackColor = true;
  99. this.nginxConnect.Click += new System.EventHandler(this.nginxConnect_Click);
  100. //
  101. // nginxStatus
  102. //
  103. this.nginxStatus.AutoSize = true;
  104. this.nginxStatus.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  105. this.nginxStatus.Location = new System.Drawing.Point(24, 38);
  106. this.nginxStatus.Name = "nginxStatus";
  107. this.nginxStatus.Size = new System.Drawing.Size(105, 28);
  108. this.nginxStatus.TabIndex = 0;
  109. this.nginxStatus.Text = "Отключён";
  110. //
  111. // pythonGroup
  112. //
  113. this.pythonGroup.Controls.Add(this.richTextBox1);
  114. this.pythonGroup.Controls.Add(this.textBox2);
  115. this.pythonGroup.Controls.Add(this.pythonDisconnect);
  116. this.pythonGroup.Controls.Add(this.pythonConnect);
  117. this.pythonGroup.Controls.Add(this.pythonStatus);
  118. this.pythonGroup.Font = new System.Drawing.Font("Segoe UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  119. this.pythonGroup.Location = new System.Drawing.Point(13, 245);
  120. this.pythonGroup.Name = "pythonGroup";
  121. this.pythonGroup.Size = new System.Drawing.Size(777, 229);
  122. this.pythonGroup.TabIndex = 2;
  123. this.pythonGroup.TabStop = false;
  124. this.pythonGroup.Text = "python";
  125. //
  126. // richTextBox1
  127. //
  128. this.richTextBox1.BackColor = System.Drawing.Color.Navy;
  129. this.richTextBox1.Font = new System.Drawing.Font("Consolas", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  130. this.richTextBox1.ForeColor = System.Drawing.Color.White;
  131. this.richTextBox1.Location = new System.Drawing.Point(292, 26);
  132. this.richTextBox1.Name = "richTextBox1";
  133. this.richTextBox1.ReadOnly = true;
  134. this.richTextBox1.Size = new System.Drawing.Size(479, 187);
  135. this.richTextBox1.TabIndex = 4;
  136. this.richTextBox1.Text = "";
  137. this.richTextBox1.TextChanged += new System.EventHandler(this.richTextBox_TextChanged);
  138. //
  139. // textBox2
  140. //
  141. this.textBox2.Location = new System.Drawing.Point(11, 183);
  142. this.textBox2.Name = "textBox2";
  143. this.textBox2.Size = new System.Drawing.Size(258, 30);
  144. this.textBox2.TabIndex = 4;
  145. this.textBox2.Text = "D:\\Documents\\GitHub\\Jarvis-prod\\Jarvis_backend\\app.py";
  146. //
  147. // pythonDisconnect
  148. //
  149. this.pythonDisconnect.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  150. this.pythonDisconnect.Location = new System.Drawing.Point(11, 129);
  151. this.pythonDisconnect.Name = "pythonDisconnect";
  152. this.pythonDisconnect.Size = new System.Drawing.Size(258, 35);
  153. this.pythonDisconnect.TabIndex = 2;
  154. this.pythonDisconnect.Text = "Отключить";
  155. this.pythonDisconnect.UseVisualStyleBackColor = true;
  156. this.pythonDisconnect.Click += new System.EventHandler(this.pythonDisconnect_Click);
  157. //
  158. // pythonConnect
  159. //
  160. this.pythonConnect.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  161. this.pythonConnect.Location = new System.Drawing.Point(11, 88);
  162. this.pythonConnect.Name = "pythonConnect";
  163. this.pythonConnect.Size = new System.Drawing.Size(258, 35);
  164. this.pythonConnect.TabIndex = 1;
  165. this.pythonConnect.Text = "Подключить";
  166. this.pythonConnect.UseVisualStyleBackColor = true;
  167. this.pythonConnect.Click += new System.EventHandler(this.pythonConnect_Click);
  168. //
  169. // pythonStatus
  170. //
  171. this.pythonStatus.AutoSize = true;
  172. this.pythonStatus.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  173. this.pythonStatus.Location = new System.Drawing.Point(24, 38);
  174. this.pythonStatus.Name = "pythonStatus";
  175. this.pythonStatus.Size = new System.Drawing.Size(105, 28);
  176. this.pythonStatus.TabIndex = 0;
  177. this.pythonStatus.Text = "Отключён";
  178. //
  179. // ngrok
  180. //
  181. this.ngrok.Controls.Add(this.textBox3);
  182. this.ngrok.Controls.Add(this.ngrokDisconnect);
  183. this.ngrok.Controls.Add(this.ngrokShowHide);
  184. this.ngrok.Controls.Add(this.ngrokConnect);
  185. this.ngrok.Controls.Add(this.ngrokStatus);
  186. this.ngrok.Font = new System.Drawing.Font("Segoe UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  187. this.ngrok.Location = new System.Drawing.Point(13, 480);
  188. this.ngrok.Name = "ngrok";
  189. this.ngrok.Size = new System.Drawing.Size(777, 229);
  190. this.ngrok.TabIndex = 4;
  191. this.ngrok.TabStop = false;
  192. this.ngrok.Text = "ngrok";
  193. //
  194. // textBox3
  195. //
  196. this.textBox3.Location = new System.Drawing.Point(11, 183);
  197. this.textBox3.Name = "textBox3";
  198. this.textBox3.Size = new System.Drawing.Size(258, 30);
  199. this.textBox3.TabIndex = 5;
  200. this.textBox3.Text = "D:\\Desktop\\Ngrok\\ngrok.exe";
  201. //
  202. // ngrokDisconnect
  203. //
  204. this.ngrokDisconnect.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  205. this.ngrokDisconnect.Location = new System.Drawing.Point(11, 129);
  206. this.ngrokDisconnect.Name = "ngrokDisconnect";
  207. this.ngrokDisconnect.Size = new System.Drawing.Size(258, 35);
  208. this.ngrokDisconnect.TabIndex = 2;
  209. this.ngrokDisconnect.Text = "Отключить";
  210. this.ngrokDisconnect.UseVisualStyleBackColor = true;
  211. this.ngrokDisconnect.Click += new System.EventHandler(this.ngrokDisconnect_Click);
  212. //
  213. // ngrokShowHide
  214. //
  215. this.ngrokShowHide.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  216. this.ngrokShowHide.Location = new System.Drawing.Point(292, 88);
  217. this.ngrokShowHide.Name = "ngrokShowHide";
  218. this.ngrokShowHide.Size = new System.Drawing.Size(258, 35);
  219. this.ngrokShowHide.TabIndex = 1;
  220. this.ngrokShowHide.Text = "Спрятать/Показать";
  221. this.ngrokShowHide.UseVisualStyleBackColor = true;
  222. this.ngrokShowHide.Click += new System.EventHandler(this.ngrokShowHide_Click);
  223. //
  224. // ngrokConnect
  225. //
  226. this.ngrokConnect.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  227. this.ngrokConnect.Location = new System.Drawing.Point(11, 88);
  228. this.ngrokConnect.Name = "ngrokConnect";
  229. this.ngrokConnect.Size = new System.Drawing.Size(258, 35);
  230. this.ngrokConnect.TabIndex = 1;
  231. this.ngrokConnect.Text = "Подключить";
  232. this.ngrokConnect.UseVisualStyleBackColor = true;
  233. this.ngrokConnect.Click += new System.EventHandler(this.ngrokConnect_Click);
  234. //
  235. // ngrokStatus
  236. //
  237. this.ngrokStatus.AutoSize = true;
  238. this.ngrokStatus.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  239. this.ngrokStatus.Location = new System.Drawing.Point(24, 38);
  240. this.ngrokStatus.Name = "ngrokStatus";
  241. this.ngrokStatus.Size = new System.Drawing.Size(105, 28);
  242. this.ngrokStatus.TabIndex = 0;
  243. this.ngrokStatus.Text = "Отключён";
  244. //
  245. // notifyIcon1
  246. //
  247. this.notifyIcon1.ContextMenuStrip = this.exitMenu;
  248. this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
  249. this.notifyIcon1.Text = "Server Control";
  250. this.notifyIcon1.Visible = true;
  251. this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
  252. //
  253. // exitMenu
  254. //
  255. this.exitMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
  256. this.exitMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  257. this.exit});
  258. this.exitMenu.Name = "exitMenu";
  259. this.exitMenu.Size = new System.Drawing.Size(103, 28);
  260. //
  261. // exit
  262. //
  263. this.exit.Name = "exit";
  264. this.exit.Size = new System.Drawing.Size(102, 24);
  265. this.exit.Text = "Exit";
  266. //
  267. // Form1
  268. //
  269. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  270. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  271. this.ClientSize = new System.Drawing.Size(809, 722);
  272. this.Controls.Add(this.ngrok);
  273. this.Controls.Add(this.pythonGroup);
  274. this.Controls.Add(this.groupBox1);
  275. this.MaximizeBox = false;
  276. this.Name = "Form1";
  277. this.ShowIcon = false;
  278. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  279. this.Text = "Server Control";
  280. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  281. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
  282. this.Load += new System.EventHandler(this.Form1_Load);
  283. this.groupBox1.ResumeLayout(false);
  284. this.groupBox1.PerformLayout();
  285. this.pythonGroup.ResumeLayout(false);
  286. this.pythonGroup.PerformLayout();
  287. this.ngrok.ResumeLayout(false);
  288. this.ngrok.PerformLayout();
  289. this.exitMenu.ResumeLayout(false);
  290. this.ResumeLayout(false);
  291. }
  292. #endregion
  293. private System.Windows.Forms.GroupBox groupBox1;
  294. private System.Windows.Forms.Button nginxDisconnect;
  295. private System.Windows.Forms.Button nginxConnect;
  296. private System.Windows.Forms.Label nginxStatus;
  297. private System.Windows.Forms.GroupBox pythonGroup;
  298. private System.Windows.Forms.Button pythonDisconnect;
  299. private System.Windows.Forms.Button pythonConnect;
  300. private System.Windows.Forms.Label pythonStatus;
  301. private System.Windows.Forms.GroupBox ngrok;
  302. private System.Windows.Forms.Button ngrokDisconnect;
  303. private System.Windows.Forms.Button ngrokConnect;
  304. private System.Windows.Forms.Label ngrokStatus;
  305. private System.Windows.Forms.TextBox textBox1;
  306. private System.Windows.Forms.TextBox textBox2;
  307. private System.Windows.Forms.TextBox textBox3;
  308. private System.Windows.Forms.RichTextBox richTextBox1;
  309. private System.Windows.Forms.Button ngrokShowHide;
  310. private System.Windows.Forms.NotifyIcon notifyIcon1;
  311. private System.Windows.Forms.ContextMenuStrip exitMenu;
  312. private System.Windows.Forms.ToolStripMenuItem exit;
  313. }
  314. }