📄 eventlog.designer.cs
字号:
namespace MyObjectCSharp
{
partial class EventLog
{
/// <summary>
/// 设计工具所需的变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清除任何使用中的资源。
/// </summary>
/// <param name="disposing">如果应该公开 Managed 资源则为 true,否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form 设计工具产生的程序代码
/// <summary>
/// 此为设计工具支援所需的方法 - 请勿使用程序代码编辑器修改这个方法的内容。
///
/// </summary>
private void InitializeComponent()
{
this.capEventLog = new System.Windows.Forms.Label();
this.btnWriteLog = new System.Windows.Forms.Button();
this.txtEventLog = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// capEventLog
//
this.capEventLog.AutoSize = true;
this.capEventLog.Location = new System.Drawing.Point(12, 45);
this.capEventLog.Name = "capEventLog";
this.capEventLog.Size = new System.Drawing.Size(111, 12);
this.capEventLog.TabIndex = 0;
this.capEventLog.Text = "输入EventLog信息:";
//
// btnWriteLog
//
this.btnWriteLog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
this.btnWriteLog.Location = new System.Drawing.Point(337, 40);
this.btnWriteLog.Name = "btnWriteLog";
this.btnWriteLog.Size = new System.Drawing.Size(87, 23);
this.btnWriteLog.TabIndex = 1;
this.btnWriteLog.Text = "写入EventLog";
this.btnWriteLog.UseVisualStyleBackColor = false;
this.btnWriteLog.Click += new System.EventHandler(this.btnWrite_Click);
//
// txtEventLog
//
this.txtEventLog.Location = new System.Drawing.Point(122, 42);
this.txtEventLog.Name = "txtEventLog";
this.txtEventLog.Size = new System.Drawing.Size(182, 22);
this.txtEventLog.TabIndex = 2;
//
// EventLog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.PowderBlue;
this.ClientSize = new System.Drawing.Size(436, 120);
this.Controls.Add(this.txtEventLog);
this.Controls.Add(this.btnWriteLog);
this.Controls.Add(this.capEventLog);
this.Name = "EventLog";
this.Text = "EventLog";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label capEventLog;
private System.Windows.Forms.Button btnWriteLog;
private System.Windows.Forms.TextBox txtEventLog;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -