DebugForm.Designer.cs 8.1 KB

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