Main.Designer.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. namespace MqttMsgServerClient
  2. {
  3. partial class Main
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
  29. this.btnUninstall = new System.Windows.Forms.Button();
  30. this.btnStop = new System.Windows.Forms.Button();
  31. this.btnStart = new System.Windows.Forms.Button();
  32. this.btnInstall = new System.Windows.Forms.Button();
  33. this.richTextBox1 = new System.Windows.Forms.RichTextBox();
  34. this.SuspendLayout();
  35. //
  36. // btnUninstall
  37. //
  38. this.btnUninstall.Location = new System.Drawing.Point(397, 69);
  39. this.btnUninstall.Margin = new System.Windows.Forms.Padding(2);
  40. this.btnUninstall.Name = "btnUninstall";
  41. this.btnUninstall.Size = new System.Drawing.Size(107, 52);
  42. this.btnUninstall.TabIndex = 7;
  43. this.btnUninstall.Text = "卸载服务";
  44. this.btnUninstall.UseVisualStyleBackColor = true;
  45. this.btnUninstall.Click += new System.EventHandler(this.btnUninstall_Click);
  46. //
  47. // btnStop
  48. //
  49. this.btnStop.Location = new System.Drawing.Point(292, 69);
  50. this.btnStop.Margin = new System.Windows.Forms.Padding(2);
  51. this.btnStop.Name = "btnStop";
  52. this.btnStop.Size = new System.Drawing.Size(84, 52);
  53. this.btnStop.TabIndex = 6;
  54. this.btnStop.Text = "停止服务";
  55. this.btnStop.UseVisualStyleBackColor = true;
  56. this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
  57. //
  58. // btnStart
  59. //
  60. this.btnStart.Location = new System.Drawing.Point(177, 69);
  61. this.btnStart.Margin = new System.Windows.Forms.Padding(2);
  62. this.btnStart.Name = "btnStart";
  63. this.btnStart.Size = new System.Drawing.Size(86, 52);
  64. this.btnStart.TabIndex = 5;
  65. this.btnStart.Text = "启动服务";
  66. this.btnStart.UseVisualStyleBackColor = true;
  67. this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
  68. //
  69. // btnInstall
  70. //
  71. this.btnInstall.Location = new System.Drawing.Point(68, 69);
  72. this.btnInstall.Margin = new System.Windows.Forms.Padding(2);
  73. this.btnInstall.Name = "btnInstall";
  74. this.btnInstall.Size = new System.Drawing.Size(94, 52);
  75. this.btnInstall.TabIndex = 4;
  76. this.btnInstall.Text = "安装服务";
  77. this.btnInstall.UseVisualStyleBackColor = true;
  78. this.btnInstall.Click += new System.EventHandler(this.btnInstall_Click);
  79. //
  80. // richTextBox1
  81. //
  82. this.richTextBox1.Location = new System.Drawing.Point(68, 218);
  83. this.richTextBox1.Name = "richTextBox1";
  84. this.richTextBox1.Size = new System.Drawing.Size(529, 155);
  85. this.richTextBox1.TabIndex = 8;
  86. this.richTextBox1.Text = "";
  87. //
  88. // Main
  89. //
  90. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  91. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  92. this.ClientSize = new System.Drawing.Size(800, 450);
  93. this.Controls.Add(this.richTextBox1);
  94. this.Controls.Add(this.btnUninstall);
  95. this.Controls.Add(this.btnStop);
  96. this.Controls.Add(this.btnStart);
  97. this.Controls.Add(this.btnInstall);
  98. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  99. this.Name = "Main";
  100. this.Text = "Mqtt消息控制";
  101. this.ResumeLayout(false);
  102. }
  103. #endregion
  104. private System.Windows.Forms.Button btnUninstall;
  105. private System.Windows.Forms.Button btnStop;
  106. private System.Windows.Forms.Button btnStart;
  107. private System.Windows.Forms.Button btnInstall;
  108. private System.Windows.Forms.RichTextBox richTextBox1;
  109. }
  110. }