| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- namespace MqttMsgServerClient
- {
- partial class Form1
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
- this.btnUninstall = new System.Windows.Forms.Button();
- this.btnStop = new System.Windows.Forms.Button();
- this.btnStart = new System.Windows.Forms.Button();
- this.btnInstall = new System.Windows.Forms.Button();
- this.richTextBox1 = new System.Windows.Forms.RichTextBox();
- this.SuspendLayout();
- //
- // btnUninstall
- //
- this.btnUninstall.Location = new System.Drawing.Point(397, 69);
- this.btnUninstall.Margin = new System.Windows.Forms.Padding(2);
- this.btnUninstall.Name = "btnUninstall";
- this.btnUninstall.Size = new System.Drawing.Size(107, 52);
- this.btnUninstall.TabIndex = 7;
- this.btnUninstall.Text = "卸载服务";
- this.btnUninstall.UseVisualStyleBackColor = true;
- this.btnUninstall.Click += new System.EventHandler(this.btnUninstall_Click);
- //
- // btnStop
- //
- this.btnStop.Location = new System.Drawing.Point(292, 69);
- this.btnStop.Margin = new System.Windows.Forms.Padding(2);
- this.btnStop.Name = "btnStop";
- this.btnStop.Size = new System.Drawing.Size(84, 52);
- this.btnStop.TabIndex = 6;
- this.btnStop.Text = "停止服务";
- this.btnStop.UseVisualStyleBackColor = true;
- this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
- //
- // btnStart
- //
- this.btnStart.Location = new System.Drawing.Point(177, 69);
- this.btnStart.Margin = new System.Windows.Forms.Padding(2);
- this.btnStart.Name = "btnStart";
- this.btnStart.Size = new System.Drawing.Size(86, 52);
- this.btnStart.TabIndex = 5;
- this.btnStart.Text = "启动服务";
- this.btnStart.UseVisualStyleBackColor = true;
- this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
- //
- // btnInstall
- //
- this.btnInstall.Location = new System.Drawing.Point(68, 69);
- this.btnInstall.Margin = new System.Windows.Forms.Padding(2);
- this.btnInstall.Name = "btnInstall";
- this.btnInstall.Size = new System.Drawing.Size(94, 52);
- this.btnInstall.TabIndex = 4;
- this.btnInstall.Text = "安装服务";
- this.btnInstall.UseVisualStyleBackColor = true;
- this.btnInstall.Click += new System.EventHandler(this.btnInstall_Click);
- //
- // richTextBox1
- //
- this.richTextBox1.Location = new System.Drawing.Point(68, 218);
- this.richTextBox1.Name = "richTextBox1";
- this.richTextBox1.Size = new System.Drawing.Size(529, 155);
- this.richTextBox1.TabIndex = 8;
- this.richTextBox1.Text = "";
- //
- // 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.richTextBox1);
- this.Controls.Add(this.btnUninstall);
- this.Controls.Add(this.btnStop);
- this.Controls.Add(this.btnStart);
- this.Controls.Add(this.btnInstall);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "Form1";
- this.Text = "Mqtt消息控制";
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Button btnUninstall;
- private System.Windows.Forms.Button btnStop;
- private System.Windows.Forms.Button btnStart;
- private System.Windows.Forms.Button btnInstall;
- private System.Windows.Forms.RichTextBox richTextBox1;
- }
- }
|