How can I show the NLog log in a WPF control?

How can I show the Nlog log in a WPF control? Are any controls available?

Thanks!

+6
source share
2 answers

As one of the comments says, for WPF included in NLog, there is no goal, you have to create your own. There is a function request for Github.

0
source

In our team, we use Infragistics XamDataGrid , but I believe that any grid can do the job.
I am not familiar with NLog, but allowed a regular log, for example. entries have a severity level, timestamp, and content.
In this case, you can map each field to a record item:

  <igDataPresenter:Field Name="Message" Width="Auto" IsScrollTipField="True"/> 

NTN.

0
source

All Articles