📄 form1.cs
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Diagnostics;
namespace Example124_浏览事件日志_事件源和项
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.Button button5;
private System.Windows.Forms.Button button6;
private System.Diagnostics.EventLog eventLog1;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;
public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.button4 = new System.Windows.Forms.Button();
this.button5 = new System.Windows.Forms.Button();
this.button6 = new System.Windows.Forms.Button();
this.eventLog1 = new System.Diagnostics.EventLog();
((System.ComponentModel.ISupportInitialize)(this.eventLog1)).BeginInit();
this.SuspendLayout();
//
// button1
//
this.button1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.button1.Location = new System.Drawing.Point(0, 118);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(152, 23);
this.button1.TabIndex = 0;
this.button1.Text = "创建日志";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Dock = System.Windows.Forms.DockStyle.Bottom;
this.button2.Location = new System.Drawing.Point(0, 95);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(152, 23);
this.button2.TabIndex = 1;
this.button2.Text = "写入项";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// button3
//
this.button3.Dock = System.Windows.Forms.DockStyle.Bottom;
this.button3.Location = new System.Drawing.Point(0, 72);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(152, 23);
this.button3.TabIndex = 2;
this.button3.Text = "读入项";
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// button4
//
this.button4.Dock = System.Windows.Forms.DockStyle.Bottom;
this.button4.Location = new System.Drawing.Point(0, 49);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(152, 23);
this.button4.TabIndex = 3;
this.button4.Text = "清除日志";
this.button4.Click += new System.EventHandler(this.button4_Click);
//
// button5
//
this.button5.Dock = System.Windows.Forms.DockStyle.Bottom;
this.button5.Location = new System.Drawing.Point(0, 26);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(152, 23);
this.button5.TabIndex = 4;
this.button5.Text = "删除日志";
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// button6
//
this.button6.Dock = System.Windows.Forms.DockStyle.Bottom;
this.button6.Location = new System.Drawing.Point(0, 3);
this.button6.Name = "button6";
this.button6.Size = new System.Drawing.Size(152, 23);
this.button6.TabIndex = 5;
this.button6.Text = "删除事件源";
this.button6.Click += new System.EventHandler(this.button6_Click);
//
// eventLog1
//
this.eventLog1.SynchronizingObject = this;
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(152, 141);
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.button6,
this.button5,
this.button4,
this.button3,
this.button2,
this.button1});
this.Name = "Form1";
this.Text = "Form1";
((System.ComponentModel.ISupportInitialize)(this.eventLog1)).EndInit();
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void button1_Click(object sender, System.EventArgs e)
{
if (EventLog.SourceExists("Source1"))
{
EventLog.DeleteEventSource("Source1");
EventLog.CreateEventSource("Source1", "NewLog1");
}
else
{
EventLog.CreateEventSource("Source1", "NewLog1");
}
eventLog1.Source = "Source1";
}
private void button2_Click(object sender, System.EventArgs e)
{
eventLog1.Source = "Source1";
eventLog1.WriteEntry("这是一个消息信息。");
eventLog1.WriteEntry("这是一个错误信息",EventLogEntryType.Error);
//写入的两个项:信息性事件和错误事件
}
private void button3_Click(object sender, System.EventArgs e)
{
foreach( EventLogEntry en in eventLog1.Entries)
{
MessageBox.Show(en.Message);
}
}
private void button4_Click(object sender, System.EventArgs e)
{
eventLog1.Clear();
//使用Clear方法从自定义日志中移除现有项
}
private void button5_Click(object sender, System.EventArgs e)
{
if (EventLog.SourceExists("Source1"))
{
EventLog.Delete("NewLog1");
}
//如果存在Source1那么删除NewLog1
}
private void button6_Click(object sender, System.EventArgs e)
{
if (EventLog.SourceExists("Source1"))
{
EventLog.DeleteEventSource("Source1");
}
//将首先验证Source1是否存在
//如果存在调用DeleteEventSource方法移除它
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -