vote up 0 vote down star

Hi, 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.

flag

69% 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 at 16:35
Yes, in case that I have, ASCII Encoding is what I need to use. Thanks for the tip :) – Andrija Sep 2 at 17:12

2 Answers

vote up 1 vote down check

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|flag
rtfBox.Selection.Load is what I needed. Thank you :) – Andrija Sep 2 at 15:27
vote up -1 vote down

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|flag
1  
That works for the WinForms RichTextBox – Henk Holterman Sep 2 at 12:11
Oh my bad. I missed you where using WPF. – J. Random Coder Sep 2 at 12:22

Your Answer

Get an OpenID
or

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