I've started my journey for searching an efficient way to output logs.
The problem: Implement smth like VS Output window.
I've tried to use the RichTextBox and I really don't like how it performs. It is hard to implement some sort of virtualization in case the output is really long. So, this control is not created for such tasks.
This task seemed to me really easy until I decompiled the original OutputWindow control in VS and realized that there are a couple of thousand lines of code. Probably, there is a way to initialize it inside my WPF application, but styles end etc...
TextBox - doesn't fit also.
I've rushed through google and GitHub haven't found anything... I really don't believe I am the first person who faces such a problem.
So, maybe smb seen smth similar?
Thanks in advance!!
P.S. Right now I've resolved it by using templated ListBox. That is not what I need, but performs the best.