I read the following posts but neither helped to just get the same efficient way of printing logs from NLog onto a RichTextBox control target as in Winforms.

How can I use NLog's RichTextBox Target in WPF application?

WPF: Binding RichTextBox to Logger Output

I also browsed the official forum but with no success (except suggestions to read the two above posts).

The idea would be to add the target as:

<target xsi:type="RichTextBox" name="console"
     layout="${longdate:useUTC=true}|${level:uppercase=true}|${logger}::${message}"
     autoScroll="true"
     maxLines="1000000"
     controlName="rtbConsole"
     formName="MyWPFWindowName"
     useDefaultRowColoringRules="true">
</target>

And within the WPF window with MyWPFWindowName as name, to add a RichTextBox control with rtbConsole. Even if I create the target programmatically after the winow has been loaded, it will not use the existing rtbConsole but create a new form.

So, your help is appreciated!

link|improve this question

71% accept rate
what did you try so far and what happens? Please show some code instead of simply saying does not work. – Davide Piras Jul 7 '11 at 23:19
What specific issues are you experiencing with logging to RichTextBox? "It's not as efficient" is pretty vague. What are you expecting to happen? – Anna Lear Jul 7 '11 at 23:20
Please see my edit above. The issue is quite straightforward to replicate if you are using NLog and WPF. – Erwin Mayer Jul 8 '11 at 10:26
feedback

1 Answer

I agree that the 2 referenced links in the question are not optimal. (I also would NOT use those solutions.)

Here's what I'd try:

Write a custom (WPF) control target using an algorithm similar to NLog's FormControlTarget.

Ensure to register your new target.
Also, NLog's FormHelper may be helpful.

Most of the WinForms code should be easily convertible to WPF.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.