namespace SunRoxmDTS.Test { partial class Form1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows 窗体设计器生成的代码 /// /// 设计器支持所需的方法 - 不要修改 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.btnInstall = new System.Windows.Forms.Button(); this.btnUninstall = new System.Windows.Forms.Button(); this.btnStart = new System.Windows.Forms.Button(); this.btnStop = new System.Windows.Forms.Button(); this.SuspendLayout(); // // btnInstall // this.btnInstall.Location = new System.Drawing.Point(67, 55); this.btnInstall.Name = "btnInstall"; this.btnInstall.Size = new System.Drawing.Size(122, 40); this.btnInstall.TabIndex = 0; this.btnInstall.Text = "安装服务"; this.btnInstall.UseVisualStyleBackColor = true; this.btnInstall.Click += new System.EventHandler(this.btnInstall_Click); // // btnUninstall // this.btnUninstall.Location = new System.Drawing.Point(218, 55); this.btnUninstall.Name = "btnUninstall"; this.btnUninstall.Size = new System.Drawing.Size(122, 40); this.btnUninstall.TabIndex = 1; this.btnUninstall.Text = "卸载服务"; this.btnUninstall.UseVisualStyleBackColor = true; this.btnUninstall.Click += new System.EventHandler(this.btnUninstall_Click); // // btnStart // this.btnStart.Location = new System.Drawing.Point(375, 55); this.btnStart.Name = "btnStart"; this.btnStart.Size = new System.Drawing.Size(122, 40); this.btnStart.TabIndex = 2; this.btnStart.Text = "开始服务"; this.btnStart.UseVisualStyleBackColor = true; this.btnStart.Click += new System.EventHandler(this.btnStart_Click); // // btnStop // this.btnStop.Location = new System.Drawing.Point(540, 55); this.btnStop.Name = "btnStop"; this.btnStop.Size = new System.Drawing.Size(122, 40); this.btnStop.TabIndex = 3; this.btnStop.Text = "停止服务"; this.btnStop.UseVisualStyleBackColor = true; this.btnStop.Click += new System.EventHandler(this.btnStop_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.btnStop); this.Controls.Add(this.btnStart); this.Controls.Add(this.btnUninstall); this.Controls.Add(this.btnInstall); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button btnInstall; private System.Windows.Forms.Button btnUninstall; private System.Windows.Forms.Button btnStart; private System.Windows.Forms.Button btnStop; } }