I am writing a text editor and had planned on using the richtextbox control however, the richtextbox’s performance is abysmal. On even small documents the wpf richtextbox lags if you hold a key down. I do not need all of the features of the wpf richtextbox, but I do need rtf support.
How can I implement this?
I am writing a text editor and had planned on using the richtextbox control
Share
If you need RTF support, you’re best off just using RichTextBox. RichTextBox’s slower performance mainly comes from supporting RTF, which is not trivial.