0

I am looking for a WPF component to load log files and show them in my application. It should at least provide some sort of filtering, a search and color coding.

The only thing I found that looked promising was Orc.LogViewer. I was however unable to simply use this as a viewer for existing log files, as there seems to be no functionality to load files. It only works with active log listeners.

MuhKuh
  • 1,049
  • 10
  • 18
  • How about this post: https://stackoverflow.com/questions/16743804/implementing-a-log-viewer-with-wpf ? With some tweaking you could add search functionality and colors yourself. Or do you really want a standalone library? – M0CH1R0N Jul 06 '17 at 10:20
  • I am looking for a low effort solution with a standalone library – MuhKuh Jul 07 '17 at 13:39

1 Answers1

0

You could look into the LogViewer app created by the same company. See https://github.com/wildgums/logviewer

Geert van Horrik
  • 5,689
  • 1
  • 18
  • 32
  • 1
    This application doesn't even run when compiled. It immediately crashes with an access to a disposed object. But I am anyway looking for a component I can integrate rather than a complete application. – MuhKuh Jul 07 '17 at 13:40