为什么Eventlog不显示“键”图标?

时间:2018-06-21 16:40:38

标签: windows vb.net

环境:Windows 10上的VS2017,目标框架.NET4.0

我开发了一个在eventlog中也写入条目的应用程序。这是我的问题:

EventLog.WriteEntry("Application", "sample entry (type 'Information')", EventLogEntryType.Information, 0)
上面的

代码示例运行良好,应用程序事件日志中有一个新条目,其前面带有Information-icon。在EventLogEntryType.ErrorEventLogEntryType.Warning上相同。前面有漂亮的“错误”和“警告”图标。 但是,如果我尝试这样做:

EventLog.WriteEntry("Application", "sample entry (type 'SuccessAudit')", EventLogEntryType.SuccessAudit, 0)
事件日志中的

是一个新条目,但其前面带有错误的图标类型Information,而不是漂亮的Key-icon。但是为什么呢?

0 个答案:

没有答案