Form1.Designer.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. namespace SunRoxmDTS.Test
  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.btnInstall = new System.Windows.Forms.Button();
  29. this.btnUninstall = new System.Windows.Forms.Button();
  30. this.btnStart = new System.Windows.Forms.Button();
  31. this.btnStop = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // btnInstall
  35. //
  36. this.btnInstall.Location = new System.Drawing.Point(67, 55);
  37. this.btnInstall.Name = "btnInstall";
  38. this.btnInstall.Size = new System.Drawing.Size(122, 40);
  39. this.btnInstall.TabIndex = 0;
  40. this.btnInstall.Text = "安装服务";
  41. this.btnInstall.UseVisualStyleBackColor = true;
  42. this.btnInstall.Click += new System.EventHandler(this.btnInstall_Click);
  43. //
  44. // btnUninstall
  45. //
  46. this.btnUninstall.Location = new System.Drawing.Point(218, 55);
  47. this.btnUninstall.Name = "btnUninstall";
  48. this.btnUninstall.Size = new System.Drawing.Size(122, 40);
  49. this.btnUninstall.TabIndex = 1;
  50. this.btnUninstall.Text = "卸载服务";
  51. this.btnUninstall.UseVisualStyleBackColor = true;
  52. this.btnUninstall.Click += new System.EventHandler(this.btnUninstall_Click);
  53. //
  54. // btnStart
  55. //
  56. this.btnStart.Location = new System.Drawing.Point(375, 55);
  57. this.btnStart.Name = "btnStart";
  58. this.btnStart.Size = new System.Drawing.Size(122, 40);
  59. this.btnStart.TabIndex = 2;
  60. this.btnStart.Text = "开始服务";
  61. this.btnStart.UseVisualStyleBackColor = true;
  62. this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
  63. //
  64. // btnStop
  65. //
  66. this.btnStop.Location = new System.Drawing.Point(540, 55);
  67. this.btnStop.Name = "btnStop";
  68. this.btnStop.Size = new System.Drawing.Size(122, 40);
  69. this.btnStop.TabIndex = 3;
  70. this.btnStop.Text = "停止服务";
  71. this.btnStop.UseVisualStyleBackColor = true;
  72. this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
  73. //
  74. // Form1
  75. //
  76. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  77. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  78. this.ClientSize = new System.Drawing.Size(800, 450);
  79. this.Controls.Add(this.btnStop);
  80. this.Controls.Add(this.btnStart);
  81. this.Controls.Add(this.btnUninstall);
  82. this.Controls.Add(this.btnInstall);
  83. this.Name = "Form1";
  84. this.Text = "Form1";
  85. this.ResumeLayout(false);
  86. }
  87. #endregion
  88. private System.Windows.Forms.Button btnInstall;
  89. private System.Windows.Forms.Button btnUninstall;
  90. private System.Windows.Forms.Button btnStart;
  91. private System.Windows.Forms.Button btnStop;
  92. }
  93. }