I have this RTF text:

{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fcharset0 Arial;}}
{\colortbl ;\red0\green0\blue0;\red255\green0\blue0;}
\viewkind4\uc1\pard\qc\cf1\fs16 test \b bold \cf2\b0\i italic\cf0\i0\fs17 
\par }

How to set this text into WPF RichTextBox?


Solution:

        public void SetRTFText(string text)
  {
   MemoryStream stream = new MemoryStream(ASCIIEncoding.Default.GetBytes(text));
   this.mainRTB.Selection.Load(stream, DataFormats.Rtf);
  }

Thanks for help from Henk Holterman.

link|improve this question

76% accept rate
Just 1 remark, are you sure you want ASCII encoding? It could be but UTF8 or default usually make more sense. – Henk Holterman Sep 2 '09 at 16:35
Yes, in case that I have, ASCII Encoding is what I need to use. Thanks for the tip :) – Andrija Sep 2 '09 at 17:12
feedback

3 Answers

up vote 6 down vote accepted

Do you really have to start with a string?

One method to load RTF is this:

rtfBox.Selection.Load(myStream, DataFormats.Rtf);

You probably should call SelectAll() before that if you want to replace existing text.

So, worst case, you'll have to write your string to a MemoryStream and then feed that stream to the Load() method. Don't forget to Position=0 in between.

But I'm waiting to see somebody to come up with something more elegant.

link|improve this answer
rtfBox.Selection.Load is what I needed. Thank you :) – Andrija Sep 2 '09 at 15:27
1  
Instead of using the Selection property and worrying about calling SelectAll, you can probably use new TextRange( rtfBox.Document.ContentStart, rtfBox.Document.ContentEnd ) and then call Load on the TextRange (Selection is itself a TextRange). – chaiguy Jun 1 '10 at 1:51
feedback

I wrote a really slick solution by extending the RichTextBox class to allow Binding to an actual rich text file.

I came across this question/answer but didn't really get what I was looking for, so hopefully what I have learned will help out those who read this in the future.

Loading a RichTextBox from an RTF file using binding or a RichTextFile control

link|improve this answer
feedback

Simply use RichTextBox.Rtf:

string rtf = @"{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fcharset0 Arial;}} {\colortbl ;\red0\green0\blue0;\red255\green0\blue0;} \viewkind4\uc1\pard\qc\cf1\fs16 test \b bold \cf2\b0\i italic\cf0\i0\fs17  \par } ";
richTextBox1.Rtf = rtf;
link|improve this answer
1  
That works for the WinForms RichTextBox – Henk Holterman Sep 2 '09 at 12:11
Oh my bad. I missed you where using WPF. – J. Random Coder Sep 2 '09 at 12:22
you're answer helped me, so vote up. – juanjo.arana Sep 13 '11 at 8:48
feedback

Your Answer

 
or
required, but never shown

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