| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- namespace PLC_WF
- {
- partial class F_Log
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(F_Log));
- this.txtLog = new System.Windows.Forms.TextBox();
- this.toolStrip1 = new System.Windows.Forms.ToolStrip();
- this.tsbClear = new System.Windows.Forms.ToolStripButton();
- this.tsbWarp = new System.Windows.Forms.ToolStripButton();
- this.toolStrip1.SuspendLayout();
- this.SuspendLayout();
- //
- // txtLog
- //
- this.txtLog.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtLog.Location = new System.Drawing.Point(0, 25);
- this.txtLog.Multiline = true;
- this.txtLog.Name = "txtLog";
- this.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Both;
- this.txtLog.Size = new System.Drawing.Size(346, 303);
- this.txtLog.TabIndex = 0;
- //
- // toolStrip1
- //
- this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.tsbClear,
- this.tsbWarp});
- this.toolStrip1.Location = new System.Drawing.Point(0, 0);
- this.toolStrip1.Name = "toolStrip1";
- this.toolStrip1.Size = new System.Drawing.Size(346, 25);
- this.toolStrip1.TabIndex = 1;
- this.toolStrip1.Text = "toolStrip1";
- //
- // tsbClear
- //
- this.tsbClear.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.tsbClear.Image = ((System.Drawing.Image)(resources.GetObject("tsbClear.Image")));
- this.tsbClear.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbClear.Name = "tsbClear";
- this.tsbClear.Size = new System.Drawing.Size(36, 22);
- this.tsbClear.Text = "清空";
- this.tsbClear.Click += new System.EventHandler(this.tsbClear_Click);
- //
- // tsbWarp
- //
- this.tsbWarp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.tsbWarp.Image = ((System.Drawing.Image)(resources.GetObject("tsbWarp.Image")));
- this.tsbWarp.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbWarp.Name = "tsbWarp";
- this.tsbWarp.Size = new System.Drawing.Size(44, 22);
- this.tsbWarp.Text = "√折行";
- this.tsbWarp.Click += new System.EventHandler(this.tsbWarp_Click);
- //
- // F_Log
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(346, 328);
- this.Controls.Add(this.txtLog);
- this.Controls.Add(this.toolStrip1);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "F_Log";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "日志";
- this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.F_Log_FormClosed);
- this.toolStrip1.ResumeLayout(false);
- this.toolStrip1.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.TextBox txtLog;
- private System.Windows.Forms.ToolStrip toolStrip1;
- private System.Windows.Forms.ToolStripButton tsbWarp;
- private System.Windows.Forms.ToolStripButton tsbClear;
- }
- }
|