Debug.Designer.cs 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. namespace RF_TRIO_PLL_ZIG
  2. {
  3. partial class Debug
  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.tbReceived = new System.Windows.Forms.RichTextBox();
  29. this.groupBox1 = new System.Windows.Forms.GroupBox();
  30. this.checkBox2 = new System.Windows.Forms.CheckBox();
  31. this.checkBox1 = new System.Windows.Forms.CheckBox();
  32. this.radioButton_ascii = new System.Windows.Forms.RadioButton();
  33. this.radioButton_hex = new System.Windows.Forms.RadioButton();
  34. this.button_Clear = new System.Windows.Forms.Button();
  35. this.button_Send = new System.Windows.Forms.Button();
  36. this.textBox_senddata = new System.Windows.Forms.TextBox();
  37. this.groupBox1.SuspendLayout();
  38. this.SuspendLayout();
  39. //
  40. // tbReceived
  41. //
  42. this.tbReceived.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  43. this.tbReceived.ForeColor = System.Drawing.SystemColors.Window;
  44. this.tbReceived.Location = new System.Drawing.Point(0, 0);
  45. this.tbReceived.MaxLength = 0;
  46. this.tbReceived.Name = "tbReceived";
  47. this.tbReceived.ReadOnly = true;
  48. this.tbReceived.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
  49. this.tbReceived.Size = new System.Drawing.Size(800, 403);
  50. this.tbReceived.TabIndex = 63;
  51. this.tbReceived.Text = "";
  52. //
  53. // groupBox1
  54. //
  55. this.groupBox1.Controls.Add(this.checkBox2);
  56. this.groupBox1.Controls.Add(this.checkBox1);
  57. this.groupBox1.Controls.Add(this.radioButton_ascii);
  58. this.groupBox1.Controls.Add(this.radioButton_hex);
  59. this.groupBox1.Controls.Add(this.button_Clear);
  60. this.groupBox1.Controls.Add(this.button_Send);
  61. this.groupBox1.Controls.Add(this.textBox_senddata);
  62. this.groupBox1.Location = new System.Drawing.Point(13, 410);
  63. this.groupBox1.Name = "groupBox1";
  64. this.groupBox1.Size = new System.Drawing.Size(787, 89);
  65. this.groupBox1.TabIndex = 64;
  66. this.groupBox1.TabStop = false;
  67. this.groupBox1.Text = "보내는 문자열";
  68. //
  69. // checkBox2
  70. //
  71. this.checkBox2.AutoSize = true;
  72. this.checkBox2.Location = new System.Drawing.Point(254, 20);
  73. this.checkBox2.Name = "checkBox2";
  74. this.checkBox2.Size = new System.Drawing.Size(116, 16);
  75. this.checkBox2.TabIndex = 4;
  76. this.checkBox2.Text = "수신 문자열 표시";
  77. this.checkBox2.UseVisualStyleBackColor = true;
  78. //
  79. // checkBox1
  80. //
  81. this.checkBox1.AutoSize = true;
  82. this.checkBox1.Location = new System.Drawing.Point(131, 20);
  83. this.checkBox1.Name = "checkBox1";
  84. this.checkBox1.Size = new System.Drawing.Size(116, 16);
  85. this.checkBox1.TabIndex = 4;
  86. this.checkBox1.Text = "송신 문자열 표시";
  87. this.checkBox1.UseVisualStyleBackColor = true;
  88. //
  89. // radioButton_ascii
  90. //
  91. this.radioButton_ascii.AutoSize = true;
  92. this.radioButton_ascii.Checked = true;
  93. this.radioButton_ascii.Location = new System.Drawing.Point(71, 20);
  94. this.radioButton_ascii.Name = "radioButton_ascii";
  95. this.radioButton_ascii.Size = new System.Drawing.Size(54, 16);
  96. this.radioButton_ascii.TabIndex = 3;
  97. this.radioButton_ascii.TabStop = true;
  98. this.radioButton_ascii.Text = "ASCII";
  99. this.radioButton_ascii.UseVisualStyleBackColor = true;
  100. //
  101. // radioButton_hex
  102. //
  103. this.radioButton_hex.AutoSize = true;
  104. this.radioButton_hex.Location = new System.Drawing.Point(7, 20);
  105. this.radioButton_hex.Name = "radioButton_hex";
  106. this.radioButton_hex.Size = new System.Drawing.Size(45, 16);
  107. this.radioButton_hex.TabIndex = 3;
  108. this.radioButton_hex.Text = "Hex";
  109. this.radioButton_hex.UseVisualStyleBackColor = true;
  110. //
  111. // button_Clear
  112. //
  113. this.button_Clear.Location = new System.Drawing.Point(702, 20);
  114. this.button_Clear.Name = "button_Clear";
  115. this.button_Clear.Size = new System.Drawing.Size(71, 23);
  116. this.button_Clear.TabIndex = 2;
  117. this.button_Clear.Text = "삭제";
  118. this.button_Clear.UseVisualStyleBackColor = true;
  119. this.button_Clear.Click += new System.EventHandler(this.Button_Clear_Click);
  120. //
  121. // button_Send
  122. //
  123. this.button_Send.Location = new System.Drawing.Point(702, 53);
  124. this.button_Send.Name = "button_Send";
  125. this.button_Send.Size = new System.Drawing.Size(71, 23);
  126. this.button_Send.TabIndex = 1;
  127. this.button_Send.Text = "보내기";
  128. this.button_Send.UseVisualStyleBackColor = true;
  129. this.button_Send.Click += new System.EventHandler(this.Button_Send_Click);
  130. //
  131. // textBox_senddata
  132. //
  133. this.textBox_senddata.Location = new System.Drawing.Point(7, 54);
  134. this.textBox_senddata.Name = "textBox_senddata";
  135. this.textBox_senddata.Size = new System.Drawing.Size(688, 21);
  136. this.textBox_senddata.TabIndex = 0;
  137. //
  138. // Debug
  139. //
  140. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
  141. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  142. this.ClientSize = new System.Drawing.Size(802, 511);
  143. this.Controls.Add(this.groupBox1);
  144. this.Controls.Add(this.tbReceived);
  145. this.Name = "Debug";
  146. this.Text = "Debug";
  147. this.groupBox1.ResumeLayout(false);
  148. this.groupBox1.PerformLayout();
  149. this.ResumeLayout(false);
  150. }
  151. #endregion
  152. public System.Windows.Forms.RichTextBox tbReceived;
  153. private System.Windows.Forms.GroupBox groupBox1;
  154. private System.Windows.Forms.Button button_Send;
  155. private System.Windows.Forms.TextBox textBox_senddata;
  156. private System.Windows.Forms.Button button_Clear;
  157. private System.Windows.Forms.CheckBox checkBox2;
  158. private System.Windows.Forms.CheckBox checkBox1;
  159. private System.Windows.Forms.RadioButton radioButton_ascii;
  160. private System.Windows.Forms.RadioButton radioButton_hex;
  161. }
  162. }