Form1.Designer.cs 5.1 KB

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