92 lines
3.7 KiB
C#
92 lines
3.7 KiB
C#
namespace YLErp.Forms
|
|
{
|
|
partial class FormSysLog
|
|
{
|
|
/// <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()
|
|
{
|
|
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
|
this.menuClearLog = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
|
|
this.menuStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// menuStrip1
|
|
//
|
|
this.menuStrip1.AllowMerge = false;
|
|
this.menuStrip1.ImageScalingSize = new System.Drawing.Size(21, 21);
|
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.menuClearLog});
|
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.menuStrip1.Name = "menuStrip1";
|
|
this.menuStrip1.Padding = new System.Windows.Forms.Padding(4, 2, 0, 2);
|
|
this.menuStrip1.Size = new System.Drawing.Size(736, 25);
|
|
this.menuStrip1.TabIndex = 0;
|
|
this.menuStrip1.Text = "menuStrip1";
|
|
//
|
|
// menuClearLog
|
|
//
|
|
this.menuClearLog.Name = "menuClearLog";
|
|
this.menuClearLog.Size = new System.Drawing.Size(68, 21);
|
|
this.menuClearLog.Text = "清空日志";
|
|
this.menuClearLog.Click += new System.EventHandler(this.menuClearLog_Click);
|
|
//
|
|
// richTextBox1
|
|
//
|
|
this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.richTextBox1.Location = new System.Drawing.Point(0, 25);
|
|
this.richTextBox1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.richTextBox1.Name = "richTextBox1";
|
|
this.richTextBox1.Size = new System.Drawing.Size(736, 445);
|
|
this.richTextBox1.TabIndex = 1;
|
|
this.richTextBox1.Text = "";
|
|
//
|
|
// FormSysLog
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(736, 470);
|
|
this.Controls.Add(this.richTextBox1);
|
|
this.Controls.Add(this.menuStrip1);
|
|
this.MainMenuStrip = this.menuStrip1;
|
|
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.Name = "FormSysLog";
|
|
this.Text = "系统日志";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormSysLog_FormClosing);
|
|
this.menuStrip1.ResumeLayout(false);
|
|
this.menuStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.MenuStrip menuStrip1;
|
|
private System.Windows.Forms.ToolStripMenuItem menuClearLog;
|
|
private System.Windows.Forms.RichTextBox richTextBox1;
|
|
}
|
|
} |