TCM
TCM

Reputation: 16900

RichTextEditor for silverlight 4

Is there any editor control in Silverlight 4?

I just want the basic functionality; much what Stackoverflow has while posting question. The basic stuff like making it bold, italic, etc. I saw Telerik's editor control. However, I'd rather not use it because it is a very large assembly of 1 MB. After already adding a few of Telerik's assemblies, my XAP size is above 2 MB.

Upvotes: 3

Views: 945

Answers (1)

AnthonyWJones
AnthonyWJones

Reputation: 189437

Have you considered just using code around the built in RichTextBox?

Download sample from the MSDN documentation at http://msdn.microsoft.com/en-us/library/ff426926(v=VS.95).aspx.

Something to consider though is what ultimately you want to do this this Rich text? The built in control use Xaml to describe the rich text which isn't much use to you if ultimately you need to expose it in an email.

Upvotes: 3

Related Questions