MainFrame.Designer.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. namespace LogServer
  2. {
  3. partial class MainFrame
  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.button2 = new System.Windows.Forms.Button();
  30. this.textBox1 = new System.Windows.Forms.TextBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.panel1 = new System.Windows.Forms.Panel();
  33. this.textBox2 = new System.Windows.Forms.TextBox();
  34. this.label2 = new System.Windows.Forms.Label();
  35. this.button1 = new System.Windows.Forms.Button();
  36. this.serialPort1 = new System.IO.Ports.SerialPort(this.components);
  37. this.panel1.SuspendLayout();
  38. this.SuspendLayout();
  39. //
  40. // button2
  41. //
  42. this.button2.Location = new System.Drawing.Point(291, 43);
  43. this.button2.Name = "button2";
  44. this.button2.Size = new System.Drawing.Size(117, 51);
  45. this.button2.TabIndex = 7;
  46. this.button2.Text = "启动";
  47. this.button2.UseVisualStyleBackColor = true;
  48. this.button2.Click += new System.EventHandler(this.button2_Click);
  49. //
  50. // textBox1
  51. //
  52. this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  53. this.textBox1.Location = new System.Drawing.Point(0, 100);
  54. this.textBox1.Multiline = true;
  55. this.textBox1.Name = "textBox1";
  56. this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  57. this.textBox1.Size = new System.Drawing.Size(800, 506);
  58. this.textBox1.TabIndex = 5;
  59. //
  60. // label1
  61. //
  62. this.label1.Dock = System.Windows.Forms.DockStyle.Top;
  63. this.label1.Font = new System.Drawing.Font("SimSun", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  64. this.label1.Location = new System.Drawing.Point(0, 0);
  65. this.label1.Name = "label1";
  66. this.label1.Size = new System.Drawing.Size(800, 40);
  67. this.label1.TabIndex = 4;
  68. this.label1.Text = "label1";
  69. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  70. //
  71. // panel1
  72. //
  73. this.panel1.Controls.Add(this.textBox2);
  74. this.panel1.Controls.Add(this.label2);
  75. this.panel1.Controls.Add(this.button1);
  76. this.panel1.Controls.Add(this.button2);
  77. this.panel1.Controls.Add(this.label1);
  78. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  79. this.panel1.Location = new System.Drawing.Point(0, 0);
  80. this.panel1.Name = "panel1";
  81. this.panel1.Size = new System.Drawing.Size(800, 100);
  82. this.panel1.TabIndex = 8;
  83. //
  84. // textBox2
  85. //
  86. this.textBox2.Location = new System.Drawing.Point(118, 60);
  87. this.textBox2.Name = "textBox2";
  88. this.textBox2.Size = new System.Drawing.Size(150, 21);
  89. this.textBox2.TabIndex = 10;
  90. //
  91. // label2
  92. //
  93. this.label2.Location = new System.Drawing.Point(12, 58);
  94. this.label2.Name = "label2";
  95. this.label2.Size = new System.Drawing.Size(100, 23);
  96. this.label2.TabIndex = 9;
  97. this.label2.Text = "计数";
  98. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  99. //
  100. // button1
  101. //
  102. this.button1.Location = new System.Drawing.Point(414, 43);
  103. this.button1.Name = "button1";
  104. this.button1.Size = new System.Drawing.Size(117, 51);
  105. this.button1.TabIndex = 8;
  106. this.button1.Text = "清空队列";
  107. this.button1.UseVisualStyleBackColor = true;
  108. this.button1.Click += new System.EventHandler(this.button1_Click);
  109. //
  110. // MainFrame
  111. //
  112. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  113. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  114. this.ClientSize = new System.Drawing.Size(800, 606);
  115. this.Controls.Add(this.textBox1);
  116. this.Controls.Add(this.panel1);
  117. this.Name = "MainFrame";
  118. this.Text = "日志服务器";
  119. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  120. this.Load += new System.EventHandler(this.Form1_Load);
  121. this.panel1.ResumeLayout(false);
  122. this.panel1.PerformLayout();
  123. this.ResumeLayout(false);
  124. this.PerformLayout();
  125. }
  126. #endregion
  127. private System.Windows.Forms.Button button2;
  128. private System.Windows.Forms.TextBox textBox1;
  129. private System.Windows.Forms.Label label1;
  130. private System.Windows.Forms.Panel panel1;
  131. private System.Windows.Forms.Button button1;
  132. private System.Windows.Forms.TextBox textBox2;
  133. private System.Windows.Forms.Label label2;
  134. private System.IO.Ports.SerialPort serialPort1;
  135. }
  136. }