For my WPF application I do logging to a text file using a TextWriterTraceListener. How can I also display the Trace output to a textbox?
|
|
I use this for C# winforms, should be easily adjustable to wpf
Use it like
Remember to Trace/Debug.Listeners.Remove(debugListener); when you don't need it anymore. |
||
|
|
|
How about implementing a custom TraceListener that simply appends trace messages to a string? You then expose that string as a property, implement INotifyPropertyChanged and databind a TextBox control to that property. Something like this:
You would need to add this TraceListener to the list of active listeners:
|
||||||||
|
|
|
you could append a custom Listener which updates the Textbox.Text property. You therefore need to inherit from the abstract base class TraceListener and override one of the TraaceData, TraceEvent, TraceTransfer methods. |
||
|
|
