Tagged Questions

The RichTextBox control enables you to display or edit RTF (Rich Text Format) content. This content may include formatted paragraphs, hyperlinks, and inline images.

learn more… | top users | synonyms

41
votes
18answers
38k views

What is the best rich textarea editor for jQuery?

Something like this one on the Stackoverflow site would be nice! Or something non-jQuery that doesn't conflict with jQuery $() tags would be great.
20
votes
7answers
21k views

Richtextbox wpf binding

To do DataBinding of the Document in a WPF RichtextBox, I saw 2 Solutions so far, which are to derive from the RichtextBox and add a DependencyProperty, and also the solution with a "proxy". Neither ...
16
votes
3answers
803 views

Create guitar chords editor in WPF (from RichTextBox?)

Main purpose of application I'm working on in WPF is to allow editing and consequently printing of songs lyrics with guitar chords over it. You have probably seen chords even if you don't play any ...
15
votes
6answers
11k views

Textarea that can do syntax highlighting on the fly?

I am storing a number of HTML blocks inside a CMS for reasons of easier maintenance. They are represented by TEXTAREAs. Does anybody know a JavaScript Widget of some sort that can do syntax ...
14
votes
2answers
7k views

How do I scroll a RichTextBox to the bottom?

I need to be able to scroll a RichTextBox to the bottom, even when I am not appending text. I know I can append text, and then use that to set the selection start. However I want to ensure it is at ...
13
votes
8answers
10k views

A textbox/richtextbox that has syntax highlighting? [C#]

Where can I find a control for WinForms that will highlight source code pasted into it? I would like one that has syntax highlighting support for many different languages but if it only works with C# ...
13
votes
6answers
1k views

SO's rich text editor — is it available somewhere?

I am looking for a good, solid, rich text editor for my ASP.NET web app (3.5). I know there are some out there and I've been looking around for a while with no luck. Does anyone know if the one SO ...
12
votes
5answers
895 views

Is there a jQuery autocomplete plugin that can do @completes like Facebook and Quora?

Is there a jQuery autocomplete plugin that can do @completes like Facebook and Quora? Searching for similar previous questions led to this plugin: ...
9
votes
7answers
16k views

RichTextBox (WPF) does not have string property “Text”

I am trying to set/get the text of my RichTextBox, but Text is not among list of its properties when I want to get test.Text... I am using code behind in C# (.net framework 3.5 SP1) RichTextBox test ...
9
votes
4answers
3k views

WPF RichTextBox to create editor with line numbers

I'm creating a text editor for a domain specific language. I'm using the WPF RichTextBox as the basic control. I don't know how to gracefully include line numbering. Does anyone know of any examples?
8
votes
3answers
888 views

How to set RichTextBox Font for the next text to be written?

I need to set the font family for the next text to be written in a RichTextBox. I tried setting that with... <RichTextBox x:Name="RichTextEditor" MaxWidth="1000" SpellCheck.IsEnabled="True" ...
8
votes
1answer
2k views

Read-only Run elements in a WPF RichTextBox?

I may be completely imagining this, but I could have sworn there was a way to make individual Run (or Parapgraph) elements in a RichTextBox read-only. I also could have sworn I tried a method for ...
8
votes
6answers
15k views

How can I insert an image into a RichTextBox?

Most of the examples I see say to put it on the clipboard and use paste, but that doesn't seem to be very good because it overwrites the clipboard. I did see one method that manually put the image ...
7
votes
1answer
64 views

Is there a way to use an Australian English dictionary in WPF

So In WPF I can declare a Rich Text Box like so <RichTextBox Text="{Binding Text}" SpellCheck.IsEnabled="True" /> and through some miracle little wibbly lines appear under misspelt words. ...
7
votes
3answers
245 views

How to optimize the HTML text copied from MS Word with GWT?

I'm having a problem with RichTextAreas, so my problem is: when i paste into RichTextArea the copied text from Ms Word or OpenOffice,it keeps all text styles and this is perfect, But one bad thing is ...
7
votes
1answer
4k views

Color different parts of a RichTextBox string

I'm trying to color parts of a string to be appended to a RichTextBox. I have a string built from different strings. string temp = "[" + DateTime.Now.ToShortTimeString() + "] " + userid ...
7
votes
5answers
7k views

C# How can I make a hyperlink work in a RichTextBox?

When I add www.stackoverflow.com into my richtextbox and run the program it is shown in blue and as a hyperlink yet when I click it nothing happens. How can I fix this? Thanks
6
votes
5answers
244 views

C# - Replace a character with nothing

I have a RichTextBox that looks like this: TEXT NEXT_TEXT 10.505 -174.994 0 TEXT NEXT_TEXT 100.005 174.994 90 TEXT NEXT_TEXT -10.000 -5.555 180 TEXT NEXT_TEXT -500.987 5.123 270 ...
6
votes
5answers
2k views

jQuery plugin that suggests/autocompletes within a textarea

Is there a jQuery plugin that suggests/autocompletes within a textarea? What I want is to have suggested words or autocompleted text proffered to the user in a textarea like the example image below: ...
6
votes
1answer
697 views

Coloring Text in RichtextBox, C#

How can I color new line of text with some different colors and then add it to RichTextBox? I'm using SilverLight.
6
votes
1answer
951 views

How to insert inline content from one FlowDocument into another?

I'm building an application that needs to allow a user to insert text from one RichTextBox at the current caret position in another one. I spent a lot of time screwing around with the FlowDocument's ...
6
votes
1answer
345 views

displaying a large amount of formated text in Python

I have two large identical-sized files. One is ASCII plain text, and the other is a colour-coded overlay, one byte per text character in the corresponding file. These files can be large - upto 2.5 ...
6
votes
3answers
868 views

How do online rich text editors work?

I was wondering how online rich text editors maintain the formatting when you paste text from a webpage or document. A standard textarea box only takes text while these WYSIWYG editors seem to use a ...
6
votes
5answers
10k views

How to access properties of a usercontrol in C#

I've made a C# usercontrol with one textbox and one richtextbox. How can I access the properties of the richtextbox from outside the usercontrol. For example.. if i put it in a form, how can i use ...
6
votes
5answers
11k views

How do I change RichTextBox paragraph spacing?

I am using a RichTextBox in WPF, and am trying to set the default paragraph spacing to 0 (so that there is no paragraph spacing). While I could do this in XAML, I would like to achieve it ...
6
votes
2answers
4k views

Modifying default tab size in RichTextBox

Is there any way to change the default tab size in a .NET RichTextBox? It currently seems to be set to the equivalent of 8 spaces which is kinda large for my taste. Edit: To clarify, I want to set ...
5
votes
1answer
148 views

Richtextbox draw an rtf line

I want to add a horizontal line to the RichTextBox as a delimiter of my text. I've found some examples of RTF code implementing a line and tried them in that way: rtbResFile.Rtf = @"{\rtf1{\pard some ...
5
votes
2answers
287 views

How to have alternating line colors for a Winforms RichTextBox?

Something that looks like this: Is there a line-like property where I could do?: foreach line ... line.BackColor = Colors.Gray; Lines[i] property returns just a string.
5
votes
2answers
756 views

WPF: How to make RichTextBox look like TextBlock?

How can I make RichTextBox with no Margin, Border, Padding etc. ? In another words to display content in the same way as TextBlock does it ? I have tried this: <RichTextBox Margin="0" Padding="0" ...
5
votes
1answer
164 views

How can I create subclass of class Inline ? (the one used in FlowDocument)

In WPF I would like to create custom Inline implementation. From documentation of Inline: "An abstract class that provides a base for all inline flow content elements." Classes like Figure, Run or ...
5
votes
3answers
5k views

C# WPF convert BitmapImage pasted in richtextbox to binary

I've got a richtextbox, that I plan on saving to a database, which can be loaded back into the same richtextbox. I've got it working so that I can save the flowdocument as DataFormats.XamlPackage, ...
5
votes
1answer
831 views

Winforms RichTextBox: How can I determine how many lines of text are visible?

I have a Winforms app containing a RichTextBox. How can I determine how many lines of text are displayed, currently visible? Reason: I want to scroll the caret to the middle of the RichTextBox. ...
5
votes
2answers
2k views

c# - perfect syntax highlighting

I'm looking for a RichTextBox with syntax highlighting! Sounds easy but I'm searching since months and didn't find that what I need. First I started to do it by myself... No good idea... I tried to ...
5
votes
3answers
1k views

Copy from Ms Word and paste into Rich Textbox problem

I have a problem when pasting ms word content into richtextbox. when I copy content of word document and paste it into richtextbox which is in a windows application written in C#. the links are ...
5
votes
1answer
1k views

Copying emoticon “text” from a richtextbox showing image in wpf

I am looking for a good, clean way to enable copying of text from a richtextbox displaying emoticons. Think of skype, where you can select a chat and it will copy the emoticon images and convert them ...
5
votes
7answers
3k views

Reset RTF in RichTextBox?

I'm trying to "reset" the formatting in my RichTextBox (WinForms, not WPF). I was previously using richTextBox.Text = richTextBox.Text; However, that seems to have suddenly failed me. Now no ...
5
votes
4answers
13k views

Displaying tooltip on mouse hover of a text

I want to display a tooltip when the mouse hovers over a link in my custom rich edit control. Consider the following text: We all sleep at night . In my case the word sleep is a link. When the ...
5
votes
1answer
702 views

Recommendations for making a Log Window in WPF

I'm currently working on a Log Window for my application that looks and behaves just like the Output Window in Visual Studio. It can be bombarded by thousands of messages per second, and it needs to ...
5
votes
6answers
2k views

WPF RichTextBox with no width set

I have the following XAML code: <Window x:Class="RichText_Wrapping.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ...
5
votes
3answers
3k views

WPF richTextBox question

If a line of text is wrapped to an additional line, how do I determine programmatically the point in the string where it was broken. Example: Input string = "This is a test of a wrapped line of ...
4
votes
4answers
342 views

Silverlight RichTextBox/ListBox/ScrollViewer strange behaviour

I have a user control with the following XAML: <ScrollViewer> <ListBox ItemsSource="{Binding Items}"> <ListBox.ItemTemplate> <DataTemplate> ...
4
votes
4answers
343 views

Suppress line break in a RichTextBox at certain positions

I need to suppress some linebreaks in a RichTextBox. For example, consider d6+. There must not be a line break between 6 and +. Basically I'm looking for something like <nobr> in HTML. So ...
4
votes
1answer
2k views

How do I maintain RichText formatting (bold/italic/etc) when changing any one element?

I have a rich text box that may contain a string that has elements of bold, italics, or even different fonts and sizes. If I select the entire string, including all of the differences, how can I ...
4
votes
1answer
2k views

Show pdf inside silverlight application. PDF to XAML

I need to create silverlight application where customer will see some pdf files. PDF files have to be inside silverlight control and not rendered as images (customer wants to select text) For this ...
4
votes
4answers
2k views

How to simulate a rich text view?

I want to simulate this kind of rich text view: (From twitter for iPad) Only the text with the button on the link. ;) How can I place a button on the link? or make the link look as cool as this? I ...
4
votes
1answer
218 views

Substract Flag From FontStyle (Toggling FontStyles) [C#]

I have a little problem. I have one 1 RichTextBox and 2 Buttons. I have that 2 buttons for "toggle Bold FStyle" and "toggle Italic FStyle". I want to toggle FontStyles without affecting other ...
4
votes
2answers
2k views

jQuery Rich Text Editor

I'm currently using TinyMCE 3 on a site, but have noticed it's pretty bloated (many files to download, etc.). I'm working on improving the site's download time, etc. One of the things I want to do is ...
4
votes
1answer
573 views

How to print line numbers for textbox in c#

This is going to be a long post. I would like to have suggestions if any on the procedure I am following. I want the best method to print line numbers next to each CRLF-terminated-line in a ...
4
votes
4answers
162 views

What is the current king of the hill for rich text textarea editors? [closed]

Just wondering: what is the current king of the hill for rich text textarea editors? Last time i checked (years ago) it was TinyMCE, is there a better option now? Thanks a lot
4
votes
3answers
1k views

RichTextBox syntax highlighting in real time--Disabling the repaint

I'm creating a function that takes a RichTextBox and has access to a list of keywords & 'badwords'. I need to highlight any keywords & badwords I find in the RichTextBox while the user is ...

1 2 3 4 5 20