Form_Debug.Designer.cs 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. namespace FPER
  2. {
  3. partial class Form_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.panel1 = new System.Windows.Forms.Panel();
  29. this.Button_Clear = new System.Windows.Forms.Button();
  30. this.Button_Save = new System.Windows.Forms.Button();
  31. this.Button_Copy = new System.Windows.Forms.Button();
  32. this.ComboBox_FontSize = new System.Windows.Forms.ComboBox();
  33. this.ComboBox_Color = new System.Windows.Forms.ComboBox();
  34. this.editBox_Log = new System.Windows.Forms.TextBox();
  35. this.CheckBox_LogEnable = new System.Windows.Forms.CheckBox();
  36. this.panel1.SuspendLayout();
  37. this.SuspendLayout();
  38. //
  39. // panel1
  40. //
  41. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(185)))), ((int)(((byte)(211)))), ((int)(((byte)(228)))));
  42. this.panel1.Controls.Add(this.CheckBox_LogEnable);
  43. this.panel1.Controls.Add(this.ComboBox_Color);
  44. this.panel1.Controls.Add(this.ComboBox_FontSize);
  45. this.panel1.Controls.Add(this.Button_Copy);
  46. this.panel1.Controls.Add(this.Button_Save);
  47. this.panel1.Controls.Add(this.Button_Clear);
  48. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  49. this.panel1.Location = new System.Drawing.Point(0, 0);
  50. this.panel1.Name = "panel1";
  51. this.panel1.Size = new System.Drawing.Size(884, 47);
  52. this.panel1.TabIndex = 0;
  53. //
  54. // Button_Clear
  55. //
  56. this.Button_Clear.Location = new System.Drawing.Point(12, 12);
  57. this.Button_Clear.Name = "Button_Clear";
  58. this.Button_Clear.Size = new System.Drawing.Size(75, 23);
  59. this.Button_Clear.TabIndex = 0;
  60. this.Button_Clear.Text = "Clear";
  61. this.Button_Clear.UseVisualStyleBackColor = true;
  62. this.Button_Clear.Click += new System.EventHandler(this.Button_Clear_Click);
  63. //
  64. // Button_Save
  65. //
  66. this.Button_Save.Location = new System.Drawing.Point(93, 12);
  67. this.Button_Save.Name = "Button_Save";
  68. this.Button_Save.Size = new System.Drawing.Size(75, 23);
  69. this.Button_Save.TabIndex = 1;
  70. this.Button_Save.Text = "Save";
  71. this.Button_Save.UseVisualStyleBackColor = true;
  72. this.Button_Save.Click += new System.EventHandler(this.Button_Save_Click);
  73. //
  74. // Button_Copy
  75. //
  76. this.Button_Copy.Location = new System.Drawing.Point(174, 12);
  77. this.Button_Copy.Name = "Button_Copy";
  78. this.Button_Copy.Size = new System.Drawing.Size(75, 23);
  79. this.Button_Copy.TabIndex = 2;
  80. this.Button_Copy.Text = "Copy";
  81. this.Button_Copy.UseVisualStyleBackColor = true;
  82. this.Button_Copy.Click += new System.EventHandler(this.Button_Copy_Click);
  83. //
  84. // ComboBox_FontSize
  85. //
  86. this.ComboBox_FontSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  87. this.ComboBox_FontSize.FormattingEnabled = true;
  88. this.ComboBox_FontSize.Items.AddRange(new object[] {
  89. "8",
  90. "10",
  91. "12",
  92. "14",
  93. "16"});
  94. this.ComboBox_FontSize.Location = new System.Drawing.Point(255, 14);
  95. this.ComboBox_FontSize.Name = "ComboBox_FontSize";
  96. this.ComboBox_FontSize.Size = new System.Drawing.Size(45, 20);
  97. this.ComboBox_FontSize.TabIndex = 3;
  98. this.ComboBox_FontSize.SelectedIndexChanged += new System.EventHandler(this.ComboBox_FontSize_SelectedIndexChanged);
  99. //
  100. // ComboBox_Color
  101. //
  102. this.ComboBox_Color.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  103. this.ComboBox_Color.FormattingEnabled = true;
  104. this.ComboBox_Color.Items.AddRange(new object[] {
  105. "White",
  106. "Blue",
  107. "Yellow",
  108. "Red"});
  109. this.ComboBox_Color.Location = new System.Drawing.Point(306, 14);
  110. this.ComboBox_Color.Name = "ComboBox_Color";
  111. this.ComboBox_Color.Size = new System.Drawing.Size(75, 20);
  112. this.ComboBox_Color.TabIndex = 4;
  113. this.ComboBox_Color.SelectedIndexChanged += new System.EventHandler(this.ComboBox_Color_SelectedIndexChanged);
  114. //
  115. // editBox_Log
  116. //
  117. this.editBox_Log.BackColor = System.Drawing.Color.Black;
  118. this.editBox_Log.Dock = System.Windows.Forms.DockStyle.Fill;
  119. this.editBox_Log.ForeColor = System.Drawing.Color.White;
  120. this.editBox_Log.Location = new System.Drawing.Point(0, 47);
  121. this.editBox_Log.Multiline = true;
  122. this.editBox_Log.Name = "editBox_Log";
  123. this.editBox_Log.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  124. this.editBox_Log.Size = new System.Drawing.Size(884, 415);
  125. this.editBox_Log.TabIndex = 1;
  126. //
  127. // CheckBox_LogEnable
  128. //
  129. this.CheckBox_LogEnable.AutoSize = true;
  130. this.CheckBox_LogEnable.Location = new System.Drawing.Point(401, 16);
  131. this.CheckBox_LogEnable.Name = "CheckBox_LogEnable";
  132. this.CheckBox_LogEnable.Size = new System.Drawing.Size(76, 16);
  133. this.CheckBox_LogEnable.TabIndex = 5;
  134. this.CheckBox_LogEnable.Text = "로그 보기";
  135. this.CheckBox_LogEnable.UseVisualStyleBackColor = true;
  136. this.CheckBox_LogEnable.CheckedChanged += new System.EventHandler(this.CheckBox_LogEnable_CheckedChanged);
  137. //
  138. // Form_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(884, 462);
  143. this.Controls.Add(this.editBox_Log);
  144. this.Controls.Add(this.panel1);
  145. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  146. this.Name = "Form_Debug";
  147. this.Text = "디버깅";
  148. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form_Debug_FormClosed);
  149. this.Load += new System.EventHandler(this.Form_Debug_Load);
  150. this.panel1.ResumeLayout(false);
  151. this.panel1.PerformLayout();
  152. this.ResumeLayout(false);
  153. this.PerformLayout();
  154. }
  155. #endregion
  156. private System.Windows.Forms.Panel panel1;
  157. private System.Windows.Forms.ComboBox ComboBox_Color;
  158. private System.Windows.Forms.ComboBox ComboBox_FontSize;
  159. private System.Windows.Forms.Button Button_Copy;
  160. private System.Windows.Forms.Button Button_Save;
  161. private System.Windows.Forms.Button Button_Clear;
  162. private System.Windows.Forms.TextBox editBox_Log;
  163. private System.Windows.Forms.CheckBox CheckBox_LogEnable;
  164. }
  165. }