Form1.Designer.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. namespace Test.CmdTool
  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.components = new System.ComponentModel.Container();
  29. this.BTFindPort = new System.Windows.Forms.Button();
  30. this.TBPort = new System.Windows.Forms.TextBox();
  31. this.TBRs = new System.Windows.Forms.TextBox();
  32. this.BTKillApp = new System.Windows.Forms.Button();
  33. this.BTStart = new System.Windows.Forms.Button();
  34. this.TMStatus = new System.Windows.Forms.Timer(this.components);
  35. this.LBStatus = new System.Windows.Forms.Label();
  36. this.TBJar = new System.Windows.Forms.TextBox();
  37. this.SuspendLayout();
  38. //
  39. // BTFindPort
  40. //
  41. this.BTFindPort.Location = new System.Drawing.Point(133, 10);
  42. this.BTFindPort.Name = "BTFindPort";
  43. this.BTFindPort.Size = new System.Drawing.Size(120, 23);
  44. this.BTFindPort.TabIndex = 0;
  45. this.BTFindPort.Text = "查询端口和PID";
  46. this.BTFindPort.UseVisualStyleBackColor = true;
  47. this.BTFindPort.Click += new System.EventHandler(this.BTFindPort_Click);
  48. //
  49. // TBPort
  50. //
  51. this.TBPort.Location = new System.Drawing.Point(27, 12);
  52. this.TBPort.Name = "TBPort";
  53. this.TBPort.Size = new System.Drawing.Size(100, 21);
  54. this.TBPort.TabIndex = 1;
  55. //
  56. // TBRs
  57. //
  58. this.TBRs.Location = new System.Drawing.Point(25, 48);
  59. this.TBRs.Multiline = true;
  60. this.TBRs.Name = "TBRs";
  61. this.TBRs.Size = new System.Drawing.Size(631, 306);
  62. this.TBRs.TabIndex = 2;
  63. //
  64. // BTKillApp
  65. //
  66. this.BTKillApp.Location = new System.Drawing.Point(259, 10);
  67. this.BTKillApp.Name = "BTKillApp";
  68. this.BTKillApp.Size = new System.Drawing.Size(75, 23);
  69. this.BTKillApp.TabIndex = 3;
  70. this.BTKillApp.Text = "结束进程";
  71. this.BTKillApp.UseVisualStyleBackColor = true;
  72. this.BTKillApp.Click += new System.EventHandler(this.BTKillApp_Click);
  73. //
  74. // BTStart
  75. //
  76. this.BTStart.Location = new System.Drawing.Point(581, 10);
  77. this.BTStart.Name = "BTStart";
  78. this.BTStart.Size = new System.Drawing.Size(75, 23);
  79. this.BTStart.TabIndex = 4;
  80. this.BTStart.Text = "启动服务";
  81. this.BTStart.UseVisualStyleBackColor = true;
  82. this.BTStart.Click += new System.EventHandler(this.BTStart_Click);
  83. //
  84. // TMStatus
  85. //
  86. this.TMStatus.Enabled = true;
  87. this.TMStatus.Interval = 1000;
  88. this.TMStatus.Tick += new System.EventHandler(this.TMStatus_Tick);
  89. //
  90. // LBStatus
  91. //
  92. this.LBStatus.AutoSize = true;
  93. this.LBStatus.Location = new System.Drawing.Point(25, 377);
  94. this.LBStatus.Name = "LBStatus";
  95. this.LBStatus.Size = new System.Drawing.Size(41, 12);
  96. this.LBStatus.TabIndex = 5;
  97. this.LBStatus.Text = "label1";
  98. //
  99. // TBJar
  100. //
  101. this.TBJar.Location = new System.Drawing.Point(341, 10);
  102. this.TBJar.Name = "TBJar";
  103. this.TBJar.Size = new System.Drawing.Size(234, 21);
  104. this.TBJar.TabIndex = 6;
  105. //
  106. // Form1
  107. //
  108. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  109. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  110. this.ClientSize = new System.Drawing.Size(687, 396);
  111. this.Controls.Add(this.TBJar);
  112. this.Controls.Add(this.LBStatus);
  113. this.Controls.Add(this.BTStart);
  114. this.Controls.Add(this.BTKillApp);
  115. this.Controls.Add(this.TBRs);
  116. this.Controls.Add(this.TBPort);
  117. this.Controls.Add(this.BTFindPort);
  118. this.Name = "Form1";
  119. this.Text = "Form1";
  120. this.Load += new System.EventHandler(this.Form1_Load);
  121. this.ResumeLayout(false);
  122. this.PerformLayout();
  123. }
  124. #endregion
  125. private System.Windows.Forms.Button BTFindPort;
  126. private System.Windows.Forms.TextBox TBPort;
  127. private System.Windows.Forms.TextBox TBRs;
  128. private System.Windows.Forms.Button BTKillApp;
  129. private System.Windows.Forms.Button BTStart;
  130. private System.Windows.Forms.Timer TMStatus;
  131. private System.Windows.Forms.Label LBStatus;
  132. private System.Windows.Forms.TextBox TBJar;
  133. }
  134. }