I want to do some investigation on RTF specification and see what happens when I say put a bulleted list, what happens when I press Enter, etc…
So I was wondering if there is a simple tool that on one part of it I can just start tpying a formatted text and one another part of it, it shows me the rtf version of what I am typing…
I want to do some investigation on RTF specification and see what happens when
Share
I think you could write this in C# pretty easily. Simply display a form with two text boxes: The left side being a regular
TextBox(probably withMultiLineset totrue), and the right side being aRichTextBox. Then, just handle theTextChangedevent in either box, and update the opposite box with the newly edited text.