F_Log.Designer.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. namespace PLC_WF
  2. {
  3. partial class F_Log
  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(F_Log));
  29. this.txtLog = new System.Windows.Forms.TextBox();
  30. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  31. this.tsbClear = new System.Windows.Forms.ToolStripButton();
  32. this.tsbWarp = new System.Windows.Forms.ToolStripButton();
  33. this.toolStrip1.SuspendLayout();
  34. this.SuspendLayout();
  35. //
  36. // txtLog
  37. //
  38. this.txtLog.Dock = System.Windows.Forms.DockStyle.Fill;
  39. this.txtLog.Location = new System.Drawing.Point(0, 25);
  40. this.txtLog.Multiline = true;
  41. this.txtLog.Name = "txtLog";
  42. this.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  43. this.txtLog.Size = new System.Drawing.Size(346, 303);
  44. this.txtLog.TabIndex = 0;
  45. //
  46. // toolStrip1
  47. //
  48. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  49. this.tsbClear,
  50. this.tsbWarp});
  51. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  52. this.toolStrip1.Name = "toolStrip1";
  53. this.toolStrip1.Size = new System.Drawing.Size(346, 25);
  54. this.toolStrip1.TabIndex = 1;
  55. this.toolStrip1.Text = "toolStrip1";
  56. //
  57. // tsbClear
  58. //
  59. this.tsbClear.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  60. this.tsbClear.Image = ((System.Drawing.Image)(resources.GetObject("tsbClear.Image")));
  61. this.tsbClear.ImageTransparentColor = System.Drawing.Color.Magenta;
  62. this.tsbClear.Name = "tsbClear";
  63. this.tsbClear.Size = new System.Drawing.Size(36, 22);
  64. this.tsbClear.Text = "清空";
  65. this.tsbClear.Click += new System.EventHandler(this.tsbClear_Click);
  66. //
  67. // tsbWarp
  68. //
  69. this.tsbWarp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  70. this.tsbWarp.Image = ((System.Drawing.Image)(resources.GetObject("tsbWarp.Image")));
  71. this.tsbWarp.ImageTransparentColor = System.Drawing.Color.Magenta;
  72. this.tsbWarp.Name = "tsbWarp";
  73. this.tsbWarp.Size = new System.Drawing.Size(44, 22);
  74. this.tsbWarp.Text = "√折行";
  75. this.tsbWarp.Click += new System.EventHandler(this.tsbWarp_Click);
  76. //
  77. // F_Log
  78. //
  79. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  80. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  81. this.ClientSize = new System.Drawing.Size(346, 328);
  82. this.Controls.Add(this.txtLog);
  83. this.Controls.Add(this.toolStrip1);
  84. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  85. this.Name = "F_Log";
  86. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  87. this.Text = "日志";
  88. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.F_Log_FormClosed);
  89. this.toolStrip1.ResumeLayout(false);
  90. this.toolStrip1.PerformLayout();
  91. this.ResumeLayout(false);
  92. this.PerformLayout();
  93. }
  94. #endregion
  95. private System.Windows.Forms.TextBox txtLog;
  96. private System.Windows.Forms.ToolStrip toolStrip1;
  97. private System.Windows.Forms.ToolStripButton tsbWarp;
  98. private System.Windows.Forms.ToolStripButton tsbClear;
  99. }
  100. }