DebugForm.Designer.cs 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. namespace Welling_Motor_Debug_Tool
  2. {
  3. partial class DebugForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DebugForm));
  29. this.button_DebugDisplay = new System.Windows.Forms.Button();
  30. this.button_DebugClear = new System.Windows.Forms.Button();
  31. this.groupBox1 = new System.Windows.Forms.GroupBox();
  32. this.richTextBox_DebugRev = new System.Windows.Forms.RichTextBox();
  33. this.groupBox2 = new System.Windows.Forms.GroupBox();
  34. this.richTextBox_DebugSend = new System.Windows.Forms.RichTextBox();
  35. this.button_DebugExport = new System.Windows.Forms.Button();
  36. this.groupBox1.SuspendLayout();
  37. this.groupBox2.SuspendLayout();
  38. this.SuspendLayout();
  39. //
  40. // button_DebugDisplay
  41. //
  42. this.button_DebugDisplay.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  43. this.button_DebugDisplay.ForeColor = System.Drawing.Color.White;
  44. this.button_DebugDisplay.Location = new System.Drawing.Point(12, 12);
  45. this.button_DebugDisplay.Name = "button_DebugDisplay";
  46. this.button_DebugDisplay.Size = new System.Drawing.Size(156, 40);
  47. this.button_DebugDisplay.TabIndex = 0;
  48. this.button_DebugDisplay.Text = "开始实时显示";
  49. this.button_DebugDisplay.UseVisualStyleBackColor = false;
  50. this.button_DebugDisplay.Click += new System.EventHandler(this.button_DebugDisplay_Click);
  51. //
  52. // button_DebugClear
  53. //
  54. this.button_DebugClear.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  55. this.button_DebugClear.ForeColor = System.Drawing.Color.White;
  56. this.button_DebugClear.Location = new System.Drawing.Point(214, 12);
  57. this.button_DebugClear.Name = "button_DebugClear";
  58. this.button_DebugClear.Size = new System.Drawing.Size(156, 40);
  59. this.button_DebugClear.TabIndex = 1;
  60. this.button_DebugClear.Text = "清空";
  61. this.button_DebugClear.UseVisualStyleBackColor = false;
  62. this.button_DebugClear.Click += new System.EventHandler(this.button_DebugClear_Click);
  63. //
  64. // groupBox1
  65. //
  66. this.groupBox1.Controls.Add(this.richTextBox_DebugRev);
  67. this.groupBox1.Location = new System.Drawing.Point(12, 58);
  68. this.groupBox1.Name = "groupBox1";
  69. this.groupBox1.Size = new System.Drawing.Size(560, 343);
  70. this.groupBox1.TabIndex = 2;
  71. this.groupBox1.TabStop = false;
  72. this.groupBox1.Text = "接收";
  73. //
  74. // richTextBox_DebugRev
  75. //
  76. this.richTextBox_DebugRev.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  77. this.richTextBox_DebugRev.Location = new System.Drawing.Point(6, 29);
  78. this.richTextBox_DebugRev.Name = "richTextBox_DebugRev";
  79. this.richTextBox_DebugRev.ReadOnly = true;
  80. this.richTextBox_DebugRev.Size = new System.Drawing.Size(548, 308);
  81. this.richTextBox_DebugRev.TabIndex = 0;
  82. this.richTextBox_DebugRev.Text = "";
  83. this.richTextBox_DebugRev.TextChanged += new System.EventHandler(this.richTextBox_DebugRev_TextChanged);
  84. //
  85. // groupBox2
  86. //
  87. this.groupBox2.Controls.Add(this.richTextBox_DebugSend);
  88. this.groupBox2.Location = new System.Drawing.Point(12, 407);
  89. this.groupBox2.Name = "groupBox2";
  90. this.groupBox2.Size = new System.Drawing.Size(560, 350);
  91. this.groupBox2.TabIndex = 3;
  92. this.groupBox2.TabStop = false;
  93. this.groupBox2.Text = "发送";
  94. //
  95. // richTextBox_DebugSend
  96. //
  97. this.richTextBox_DebugSend.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  98. this.richTextBox_DebugSend.Location = new System.Drawing.Point(6, 29);
  99. this.richTextBox_DebugSend.Name = "richTextBox_DebugSend";
  100. this.richTextBox_DebugSend.ReadOnly = true;
  101. this.richTextBox_DebugSend.Size = new System.Drawing.Size(548, 313);
  102. this.richTextBox_DebugSend.TabIndex = 0;
  103. this.richTextBox_DebugSend.Text = "";
  104. this.richTextBox_DebugSend.TextChanged += new System.EventHandler(this.richTextBox_DebugSend_TextChanged);
  105. //
  106. // button_DebugExport
  107. //
  108. this.button_DebugExport.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  109. this.button_DebugExport.ForeColor = System.Drawing.Color.White;
  110. this.button_DebugExport.Location = new System.Drawing.Point(416, 12);
  111. this.button_DebugExport.Name = "button_DebugExport";
  112. this.button_DebugExport.Size = new System.Drawing.Size(156, 40);
  113. this.button_DebugExport.TabIndex = 4;
  114. this.button_DebugExport.Text = "导出接收数据";
  115. this.button_DebugExport.UseVisualStyleBackColor = false;
  116. this.button_DebugExport.Click += new System.EventHandler(this.button_DebugExport_Click);
  117. //
  118. // DebugForm
  119. //
  120. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
  121. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  122. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  123. this.ClientSize = new System.Drawing.Size(584, 761);
  124. this.Controls.Add(this.button_DebugExport);
  125. this.Controls.Add(this.groupBox2);
  126. this.Controls.Add(this.groupBox1);
  127. this.Controls.Add(this.button_DebugClear);
  128. this.Controls.Add(this.button_DebugDisplay);
  129. this.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  130. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  131. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  132. this.Margin = new System.Windows.Forms.Padding(5);
  133. this.MaximizeBox = false;
  134. this.Name = "DebugForm";
  135. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  136. this.Text = "指令显示";
  137. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.DebugForm_FormClosed);
  138. this.Load += new System.EventHandler(this.DebugForm_Load);
  139. this.groupBox1.ResumeLayout(false);
  140. this.groupBox2.ResumeLayout(false);
  141. this.ResumeLayout(false);
  142. }
  143. #endregion
  144. private System.Windows.Forms.Button button_DebugDisplay;
  145. private System.Windows.Forms.Button button_DebugClear;
  146. private System.Windows.Forms.GroupBox groupBox1;
  147. private System.Windows.Forms.GroupBox groupBox2;
  148. public System.Windows.Forms.RichTextBox richTextBox_DebugRev;
  149. public System.Windows.Forms.RichTextBox richTextBox_DebugSend;
  150. private System.Windows.Forms.Button button_DebugExport;
  151. }
  152. }