I\'ve been trying to modify a rich text field to display correctly in its half of the horizontal field.
I\'m using System.Windows.Forms.RichTextBox and by default the tab size is 8 spaces. The RichTextBox itself is not that big and 8 spaces leads to a lot of scrolling. Is there any way to make it 4 spac
I am writing a custom control based on RichTextBox that needs the ability to process MouseLeftButtonDown events but must not allow user-initiated selection (I\'m doing everything programmatically).
Is it possible to add links that will just be links, i.e. not urls or file links but thinks like: click me, do something
Say I clicked somewhere inside 开发者_如何学编程a RichTextBox control. How can I get the current line the caret is currently on?
I have a Windows Form with a RichTextBox 开发者_运维百科on it. The content of the RichTextBox is written to a database field that ist limited to 64k data.
The TextBlock control ha开发者_如何学JAVAs LineHeight. Does anyone know a good way to set LineHeight in the RichTextBox Control in Silverlight 4?Hack: This seems to cause all the lines (even when wrap
I put the RichTextBox in my Silverlight App. D开发者_运维问答o I have to create my own set of buttons to use it? I want to have a standard set of editing buttons for the text box.Unfortunately it\'s j
I want to highlight some stuff on a web page and be able to paste it into a richtextbox in C# winforms. I want to then b开发者_如何学Pythone able to see the HTML code of what I had pasted.Is this poss
I am trying to save some c# source code into the database. Basically I have a RichTextBox that users can type their code and save that to the database.