这是我的 Winforms 应用程序中的配置文件。目前它已将 MyTraceSource 注释掉,如果我取消注释并运行我的程序,它会按预期工作。我从我引用的库中获得输出到我的控制台。MyTraceSource 是一个 Trace 源,它在我的引用库中实例化并使用,我将其称为 MyOposServiceObject。您会注意到我在我的 Logger.cs 文件中设置了另一个 TraceSource,名为 TestApplication。该跟踪源是我在测试应用程序中使用的日志记录(多么合乎逻辑的名称......)只是为了让我清楚在 2 个不同的项目中实例化并使用了 2 个跟踪源。一个是类库,另一个是winforms应用程序。如果我将我的 winforms 应用程序编译为控制台程序并在应用程序中取消注释我的 TraceSource。配置文件我从 MyOposServiceObject 记录到控制台。清如泥???确定一些代码。
应用程序配置
<system.diagnostics>
<trace autoflush="true"/>
<sharedListeners>
<!-- Outputs to a Log File-->
<add name ="file" type ="System.Diagnostics.TextWriterTraceListener" initializeData="DEMO.log">
<filter type="System.Diagnostics.EventTypeFilter" initializeData="Off"/>
</add>
<!-- Outputs to the console-->
<add name="console" type ="System.Diagnostics.ConsoleTraceListener" >
<filter type="System.Diagnostics.EventTypeFilter" initializeData="All"/>
</add>
</sharedListeners>
<sources>
<!--<source name="MyTraceSource" switchValue="All" >
<listeners>
<remove name="Default"/>
<add name="console"/>
</listeners>
</source>-->
</sources>
</system.diagnostics>
但是,我不希望我的程序成为控制台程序,所以我制作了一个自定义 TraceListener。
MyTraceListener.cs
public class MyTraceListener : TraceListener
{
private System.Windows.Forms.TextBox output;
public MyTraceListener(System.Windows.Forms.TextBox output)
{
this.Name = "FancyTrace";
this.output = output;
}
public override void Write(string message)
{
output.SafeSetText(string.Format("{0}\r\n[{1}] {2}",output.Text, DateTime.Now.ToString("F"), message));
}
public override void WriteLine(string message)
{
Write(message + Environment.NewLine);
}
}
我是这样接线的
记录器.cs
internal static void ShowDebugWindow()
{
if (debugWindow != null) return;
debugWindow = new Form();
debugWindow.TopMost = true;
debugWindow.FormBorderStyle = FormBorderStyle.FixedToolWindow;
TextBox tb = new TextBox();
tb.Multiline = true;
tb.Dock = DockStyle.Fill;
debugWindow.Controls.Add(tb);
MyTraceListener myTrace = new MyTraceListener(tb);
trace.Listeners.Add(myTrace);
opos.Listeners.Add(myTrace);
debugWindow.Show();
}
private static TraceSource trace = new TraceSource("TestApplication");
private static TraceSource opos = new TraceSource("MyTraceSource");
nowtrace
在这个应用程序中使用,它的输出确实进入了我的小调试窗口。但我从 opos 什么也没得到。我究竟做错了什么?