vote up 15 vote down star
6

Note that I'm not looking for something based on TextBox or RichTextBox. What I'm interested in is a text editing control written from scratch using WPF typography features. Open source would be a plus.

flag

33% accept rate

9 Answers

vote up 2 vote down check

Daniel Grunwald has written the Wpf text editor for SharpDevelop completely from scratch. It is called AvalonEdit and a good article is on codeproject:

http://www.codeproject.com/KB/edit/AvalonEdit.aspx

link|flag
vote up 1 vote down

A Free Silverlight RichText Editor is available on this site.

link|flag
vote up 2 vote down

Try this free open-source: http://www.codeplex.com/WPFRichEditorLibrary

link|flag
vote up 0 vote down

This one is in pretty heavy development but it does the basics right now (bold, italic, underline, alignment, fonts, font size, images, links)

link|flag
vote up 0 vote down

I have tested it, it is actually almost perfect. Expected price is very fair considering the content 12th of February is confirmed? JohnDo

link|flag
vote up 1 vote down

Hi everybody, I suggest you to try (and buy then ..) our WPF Text Editor. WPFTextEditor allows to import/export documents in RTF and DOCX format. It manages different kind of style and formatting, including table management. It support skinning, so layout can be completely customized. All the labels and messages can be easily changed as well as new language translations can be added. Take a look to http://www.wpftexteditor.com Bye Gianluca

link|flag
Looks promising. Can't wait to put in Reflector :) Does it have extensibility points? – aku Jan 30 at 16:10
you can download it now from our site. About extensibility points, there's the possibility to implement a "save" method that allow you to save data somewhere on your application instead of the disk. you can complitely change the layout, but if you need a new feature you have to ask us to implment it – Gianluca Centulani Feb 12 at 16:55
vote up 0 vote down

I think most people don't have a clue that WPF brings anything interesting Typography-wise. On the other hand, most of the OpenType-related functionality is not exposed by Microsoft, i.e., you can't just access the kerning table in OO fashion. I had to write everything myself :(

Seriously, if you want a WPF-driven text control you'll have to either use what's already available in WPF, or write your own.

link|flag
vote up 3 vote down

I don't know of any WPF-based text editor, and I've looked around for one.

Products like Kaxaml use the non-WPF editor SciTE I believe. I know that Rob Eisenberg started work on one, but I don't think he blogged about it (and I think he set it aside.)

The next version of Visual Studio (2010) is said to have a WPF-based text editor.

The short answer is that currently there isn't one.

link|flag
Kaxaml & SciTE editors are not based on WPF – aku Oct 1 '08 at 23:31
I believe Kaxaml is using ICSharpCode.TextEditor. – idursun Jan 27 at 7:07
vote up 1 vote down

A possible place to start, given the overlap between WPF and Silverlight is the Silverlight Rich Text Editor.

It appears to inherit from UserControl, not RichTextEditor.


[Edit regarding open source]

If open source is not a requirement, there are commercial controls under development at Telerik and DevExpress.

Telerik states: "We will be releasing a public CTP of RadEditor for Silverlight in Q1 2009, which is scheduled for the end of February."

DevExpress has a demo version available to look at now.

link|flag
looks interesting, thanks. – aku Sep 30 '08 at 23:56
Seems dead now though... – Ruben Bartelink Jan 30 at 11:58
Well, the source code is up there...so, if anything, let's call it "resting". – Timothy Lee Russell Jan 30 at 16:25

Your Answer

Get an OpenID
or

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