ServiceHelper.Designer.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. namespace ServiceHelper
  2. {
  3. partial class ServiceHelper
  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.InstallBtn = new System.Windows.Forms.Button();
  29. this.UninstallBtn = new System.Windows.Forms.Button();
  30. this.StartBtn = new System.Windows.Forms.Button();
  31. this.StopBtn = new System.Windows.Forms.Button();
  32. this.ConfigBtn = new System.Windows.Forms.Button();
  33. this.RestartBtn = new System.Windows.Forms.Button();
  34. this.SuspendLayout();
  35. //
  36. // InstallBtn
  37. //
  38. this.InstallBtn.Location = new System.Drawing.Point(22, 12);
  39. this.InstallBtn.Name = "InstallBtn";
  40. this.InstallBtn.Size = new System.Drawing.Size(150, 50);
  41. this.InstallBtn.TabIndex = 0;
  42. this.InstallBtn.Text = "安装Service服务";
  43. this.InstallBtn.UseVisualStyleBackColor = true;
  44. this.InstallBtn.Click += new System.EventHandler(this.InstallBtn_Click);
  45. //
  46. // UninstallBtn
  47. //
  48. this.UninstallBtn.Location = new System.Drawing.Point(22, 68);
  49. this.UninstallBtn.Name = "UninstallBtn";
  50. this.UninstallBtn.Size = new System.Drawing.Size(150, 50);
  51. this.UninstallBtn.TabIndex = 1;
  52. this.UninstallBtn.Text = "卸载Service服务";
  53. this.UninstallBtn.UseVisualStyleBackColor = true;
  54. this.UninstallBtn.Click += new System.EventHandler(this.UninstallBtn_Click);
  55. //
  56. // StartBtn
  57. //
  58. this.StartBtn.Location = new System.Drawing.Point(22, 124);
  59. this.StartBtn.Name = "StartBtn";
  60. this.StartBtn.Size = new System.Drawing.Size(150, 50);
  61. this.StartBtn.TabIndex = 2;
  62. this.StartBtn.Text = "开启Service服务";
  63. this.StartBtn.UseVisualStyleBackColor = true;
  64. this.StartBtn.Click += new System.EventHandler(this.StartBtn_Click);
  65. //
  66. // StopBtn
  67. //
  68. this.StopBtn.Location = new System.Drawing.Point(22, 180);
  69. this.StopBtn.Name = "StopBtn";
  70. this.StopBtn.Size = new System.Drawing.Size(150, 50);
  71. this.StopBtn.TabIndex = 3;
  72. this.StopBtn.Text = "停止Service服务";
  73. this.StopBtn.UseVisualStyleBackColor = true;
  74. this.StopBtn.Click += new System.EventHandler(this.StopBtn_Click);
  75. //
  76. // ConfigBtn
  77. //
  78. this.ConfigBtn.Location = new System.Drawing.Point(22, 292);
  79. this.ConfigBtn.Name = "ConfigBtn";
  80. this.ConfigBtn.Size = new System.Drawing.Size(150, 50);
  81. this.ConfigBtn.TabIndex = 4;
  82. this.ConfigBtn.Text = "配置Service服务";
  83. this.ConfigBtn.UseVisualStyleBackColor = true;
  84. this.ConfigBtn.Click += new System.EventHandler(this.ConfigBtn_Click);
  85. //
  86. // RestartBtn
  87. //
  88. this.RestartBtn.Location = new System.Drawing.Point(22, 236);
  89. this.RestartBtn.Name = "RestartBtn";
  90. this.RestartBtn.Size = new System.Drawing.Size(150, 50);
  91. this.RestartBtn.TabIndex = 5;
  92. this.RestartBtn.Text = "重启Service服务";
  93. this.RestartBtn.UseVisualStyleBackColor = true;
  94. this.RestartBtn.Click += new System.EventHandler(this.RestartBtn_Click);
  95. //
  96. // ServiceHelper
  97. //
  98. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  99. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  100. this.ClientSize = new System.Drawing.Size(194, 362);
  101. this.Controls.Add(this.RestartBtn);
  102. this.Controls.Add(this.ConfigBtn);
  103. this.Controls.Add(this.StopBtn);
  104. this.Controls.Add(this.StartBtn);
  105. this.Controls.Add(this.UninstallBtn);
  106. this.Controls.Add(this.InstallBtn);
  107. this.MaximizeBox = false;
  108. this.MinimizeBox = false;
  109. this.Name = "ServiceHelper";
  110. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  111. this.Text = "ServiceHelper";
  112. this.ResumeLayout(false);
  113. }
  114. #endregion
  115. private System.Windows.Forms.Button InstallBtn;
  116. private System.Windows.Forms.Button UninstallBtn;
  117. private System.Windows.Forms.Button StartBtn;
  118. private System.Windows.Forms.Button StopBtn;
  119. private System.Windows.Forms.Button ConfigBtn;
  120. private System.Windows.Forms.Button RestartBtn;
  121. }
  122. }