Tagged Questions

21
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 ...
17
votes
3answers
821 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 ...
10
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?
9
votes
7answers
17k 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 ...
8
votes
3answers
920 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 ...
7
votes
1answer
76 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. ...
6
votes
1answer
1k 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
7answers
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" ...
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 ...
5
votes
2answers
853 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
171 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
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
1answer
717 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
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
1answer
163 views

How to check if I'm deleting (Backspace, Delete or 'Cut') a UIElement in a RichTextBox?

I have a RichTextBox that has to contain some buttons which should be deleted properly (handled) when the user is editing content in it. I am able to check if I'm deleting (Backspace, Delete or Cut) ...
4
votes
1answer
2k views

How to keep track of TextPointer in WPF RichTextBox?

I'm trying to get my head around the TextPointer class in a WPF RichTextBox. I would like to be able to keep track of them so that I can associate information with areas in the text. I am currently ...
4
votes
2answers
1k views

Multilingual spellcheck on WPF richtextbox

I need to turn spellcheck on for a richtextbox, and set the language to one the user has picked from a drop down. For now, I'm just testing it by building the richtextbox in xaml and providing a ...
4
votes
1answer
817 views

Inline text box labels with WPF

I'm trying to reproduce the layout of some paper forms in a WPF application. Labels for text boxes are to be "inline" with the content of the text boxes, rather than "outside" like normal Windows ...
4
votes
3answers
244 views

How do I move the caret a certain number of positions in a WPF RichTextBox?

I want to move the caret 4 positions to the right of where my caret currently is. I'm registered for PreviewKeyDown, and calling InsertTextInRun() when the tab key is captured, like so: private void ...
4
votes
3answers
9k views

Select Range of Text in WPF RichTextBox (FlowDocument) Programmatically

I have this WPF RichTextBox and I want to programmatically select a given range of letters/words and highlight it. I've tried this, but it doesn't work, probably because I'm not taking into account ...
4
votes
2answers
3k views

C#/WPF: Disable Text-Wrap of RichTextBox

Does anyone know how I can disable the text wrapping of a RichTextBox? E.g. if I have a large string which doesn't fit in the window, the RichTextBox places the part of the string which can't be shown ...
4
votes
3answers
9k views

Set RTF text into WPF RichTextBox control

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 ...
4
votes
2answers
1k views

How do I set tab size in the WPF RichTextBox

The WPF RichTextBox can be set to accept tabs in its input. It renders the result as a 4 character indent. I'd like to change that size. How can I change the default?
3
votes
2answers
60 views

Is it possible to have url reference of an image in xaml like html?

I am working on RichTextBox in WPF and i would like to know if i can have url references something like we have in html <img src="http://AnyWebsite.com/example.png" /> in xaml ( which i will ...
3
votes
1answer
524 views

C# WPF: Storing and diplaying rich text efficiently

I need to store significant amounts of rich text in a SQL database, retrieve it and display it. One font throughout is OK but I need different font sizes/bold/colors. For now I am using a ...
3
votes
1answer
492 views

How to draw border around a word in RichTextBox?

Let's say I have 2 TextPointers. One pointing at the beginning of a word and the other at the end of the word. I would like to draw single pixel border around the word. How would I go about this? The ...
3
votes
1answer
139 views

How to prevent text to pixelize when I use RenderTransform?

When I use RenderTransform property and scale up a RichTextBox I get magnified text which is pixelized (square text edges). How I can prevent this? EDIT: I have ...
3
votes
1answer
568 views

KeyBinding gesture “Ctrl+1” in RichTextBox doesn't work

There is a strange difference when binding commands to Ctrl+N gestures in WPF. Some but not all of these gestures are ignored, while the rest are ok. Did anyone else experience this behavior by any ...
3
votes
1answer
395 views

WPF RichTextBox – Iterate through the text's words and change their content and formatting

I have a WPF RichTextBox which contain in its FlowDocument both text and images. I need to iterate through the text's words (those which builds the text which the user see on the screen) and change ...
3
votes
2answers
890 views

WPF RichTextBox: save/load in custom format

I need to load/save data from the WPF RichTextBox in a custom format (similar to Markdown). RichTextBox supports saving/loading in several basic formats (Rtf, Text, Xaml) using TextRange.Save ...
3
votes
2answers
1k views

Serializing WPF RichTextBox to XAML vs RTF

I have a RichTextBox and need to serialize its content to my database purely for storage purposes. It would appear that I have a choice between serializing as XAML or as RTF, and am wondering if there ...
3
votes
2answers
392 views

Best way to implement a Parsing/Editable Richtextbox in WPF

I'm trying to implement (as a prototype initially), a richtextbox control which can be parsed in real time to apply certain formatting options to it. This is being done in WPF so I thought the best ...
3
votes
1answer
370 views

WPF : Assigning to RichTextBox.Document extremely slow (7 minutes!)

I'm constructing a formatted FlowDocument from XML. The XML is well formed and consists mainly of 10,000 nodes each with a single node with a 6 character string value. Parsing the XML to an XElement ...
3
votes
2answers
919 views

In a wpf TextBox can i make characters in a string that exceed a a certain length turn red?

I'm using a TextBox control and want the characters to turn red after a certain number of characters to show users they have typed too much. I don't want to truncate as the user might have typed that ...
3
votes
1answer
2k views

Does WPF's TextBox support spell-check dictionaries for the Netherlands?

The RichTextBox supports a spellcheck option which is very nice. (SpellCheck.IsEnabled = true) But I cannot seem to get it to another language. (I live in the Netherlands.. ;)) Does any of you have ...
2
votes
1answer
17 views

FlowDocument TextElements only allowed a single parent

I built a new FlowDocument Paragraph B by examining/using elements of an existing Paragraph A. To my surprise the elements I added to the new ParagraphB were magically deleted from ParagraphA. I ...
2
votes
1answer
64 views

how do I jump to a specific line in a RichTextBox?

I'm looking for an example code how to jump to a specific line of a RichTextBox in WPF. I have no idea how to do this, in winForms it is very simple because I'm free to can set SelectionStart and ...
2
votes
1answer
100 views

Ignore Ctrl-L in WPF RichTextBox

How can I ignore/block/remove the Ctrl-L keyboard shortcut from a WPF RichTextBox? Right-now, this is bound to the AlignLeft EditingCommand. I'd like to use this keyboard shortcut for something else ...
2
votes
0answers
80 views

WPF RichTextBox throw exception when draging and droping inside it

I have a richtextbox and when I try to drag & drop inside it it throws exception: it happens when i'm in debug mode and the common language runtime exception flag is on. This is my XAML - ...
2
votes
1answer
130 views

Formatting specifc lines of text in WPF RichTextBox

In a WPF .NET 4.0 RichTextBox with the following text: Apple Cheese Orange Pear Chicken How would I programmatically with C#, (not with XAML markup), bold all lines that start with the ...
2
votes
1answer
104 views

How do I know if a TextRange is or contains a Hyperlink?

I tried with TextRange.GetPropertyValue(DependencyProperty), but I can't find de Dependency Property that identifies the specific range as hyperlink. If not with TextRange, is there anyway to find if ...
2
votes
1answer
96 views

Detect a hyperlink

I have a RichTextBox, when users type their text, quite often they enter links to some pages. What I want to do is to detect the link and make it a real hyperlink - highlight it, underline it and make ...
2
votes
1answer
249 views

RichTextBox C# programmatically trigger certain functions

I want to trigger the following functions programmatically in my RichTextBox Editor. I have this already: //Copy TextRange range = new TextRange(doc.Editor.Selection.Start, ...
2
votes
1answer
183 views

How can I use a RichTextBox as a NLog Target in a WPF application?

I read the following posts but neither helped to just get the same efficient way of printing logs from NLog onto a RichTextBox control target as in Winforms. How can I use NLog's RichTextBox ...
2
votes
1answer
248 views

RichTextBox Hyperlink

I have a WPF richtextbox that contains text and hyperlinks. I want to change the font size for the selected hyperlink when i press a button. The problem that i have is that i am not able to get the ...
2
votes
1answer
726 views

C# FlowDocument to HTML conversion

Basically, I have a RichTextBox and I want to convert the formatted contents of it to HTML so it can be sent as an email. The method I am currently using does not give any formatting at all: string ...
2
votes
1answer
133 views

How can I select the previous char from the cursor position in a RichTextBox

I am making an combobox that changes the richTextBox's font, and I would like to be able to automatically change the combobox's selection when I click on a specific text in it, matching its font. I ...
2
votes
1answer
335 views

Detect if a RichTextBox is empty

What is the best way to detect if a WPF RichTextBox/FlowDocument is empty? The following works if only text is present in the document. Not if it contains UIElement's new ...

1 2 3 4 5 7