About 824,000 results
Open links in new tab
  1. .net - Adding strings to a RichTextBox in C# - Stack Overflow

    May 20, 2016 · I currently have a function that will set a value to a RichTextBox, although how could you "add" a value or a new line to it, rather than overwriting existing data in the …

  2. c# - Color different parts of a RichTextBox string - Stack Overflow

    136 I'm trying to color parts of a string to be appended to a RichTextBox. I have a string built from different strings.

  3. How to 'align' text in RichTextBox C#? - Stack Overflow

    Feb 11, 2017 · How to 'align' text in RichTextBox C#? Asked 14 years, 5 months ago Modified 4 years, 11 months ago Viewed 62k times

  4. c# - How can I insert an image into a RichTextBox? - Stack Overflow

    You can paste (Ctrl+V) an image into a RichTextBox - Funny thing though; When I save the RichTextBox RTF property to a file while the image is already pasted into the RichTextBox, it …

  5. c# - How do I add a new line to a richtextbox without making the …

    Apr 14, 2016 · Discover how to add a new line in a RichTextBox without leaving the last line blank, with helpful solutions and examples.

  6. c# - How to clear text content in RichTextBox - Stack Overflow

    Oct 22, 2018 · After getting the text in the RichTextBox I want to clear the text. How can I do that?

  7. c# - Richtextbox wpf binding - Stack Overflow

    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 …

  8. How to select text from the RichTextBox and then color it?

    4 In general, you have to work on the selection in RichTextBox. You can manipulate the current selection using the Find method or using SelectionStart and SelectionLength properties. Then …

  9. c# - What is the benefit of using a RichTextBox over a TextBox?

    Dec 23, 2011 · 25 Well, for example you can select a portion of the text and change its font, size, weight, etc in a RichTextBox. You can also insert inline images in an RTB. Just generally more …

  10. c# - Size RichTextBox according to contents - Stack Overflow

    This code automatically sizes a RichTextBox according to it's contents. I'm having issues, especially with tables. \\t may be ignored. I tried a managed solution, now I'm trying platform …