ConsoleOutput.Designer.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. namespace CommonFroms.Utils
  2. {
  3. partial class ConsoleOutput
  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.components = new System.ComponentModel.Container();
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.timer1 = new System.Windows.Forms.Timer(this.components);
  31. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  32. this.toolDock = new System.Windows.Forms.ToolStripButton();
  33. this.toolStrip1.SuspendLayout();
  34. this.SuspendLayout();
  35. //
  36. // textBox1
  37. //
  38. this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  39. this.textBox1.Location = new System.Drawing.Point(0, 25);
  40. this.textBox1.MaxLength = 400000;
  41. this.textBox1.Multiline = true;
  42. this.textBox1.Name = "textBox1";
  43. this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  44. this.textBox1.Size = new System.Drawing.Size(778, 363);
  45. this.textBox1.TabIndex = 0;
  46. this.textBox1.WordWrap = false;
  47. //
  48. // timer1
  49. //
  50. this.timer1.Enabled = true;
  51. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  52. //
  53. // toolStrip1
  54. //
  55. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  56. this.toolDock});
  57. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  58. this.toolStrip1.Name = "toolStrip1";
  59. this.toolStrip1.Size = new System.Drawing.Size(778, 25);
  60. this.toolStrip1.TabIndex = 1;
  61. this.toolStrip1.Text = "toolStrip1";
  62. //
  63. // toolDock
  64. //
  65. this.toolDock.Checked = true;
  66. this.toolDock.CheckOnClick = true;
  67. this.toolDock.CheckState = System.Windows.Forms.CheckState.Checked;
  68. this.toolDock.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  69. this.toolDock.Image = global::CommonFroms.Properties.Resources.Image34;
  70. this.toolDock.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  71. this.toolDock.ImageTransparentColor = System.Drawing.Color.Magenta;
  72. this.toolDock.Name = "toolDock";
  73. this.toolDock.Size = new System.Drawing.Size(23, 22);
  74. this.toolDock.Text = "Dock";
  75. //
  76. // ConsoleOutput
  77. //
  78. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  79. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  80. this.ClientSize = new System.Drawing.Size(778, 388);
  81. this.ControlBox = false;
  82. this.Controls.Add(this.textBox1);
  83. this.Controls.Add(this.toolStrip1);
  84. this.Name = "ConsoleOutput";
  85. this.ShowInTaskbar = false;
  86. this.Text = "ConsoleOutput";
  87. this.toolStrip1.ResumeLayout(false);
  88. this.toolStrip1.PerformLayout();
  89. this.ResumeLayout(false);
  90. this.PerformLayout();
  91. }
  92. #endregion
  93. private System.Windows.Forms.TextBox textBox1;
  94. private System.Windows.Forms.Timer timer1;
  95. private System.Windows.Forms.ToolStrip toolStrip1;
  96. private System.Windows.Forms.ToolStripButton toolDock;
  97. }
  98. }