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!
Logs text to Windows.Forms.Control.Text property control of specified Name.– jberger Dec 23 '11 at 15:37