views:

47

answers:

2

I would like to design a richTextBox control of my own with rounded rectangular edges or liek some other is it possible to customize this

+1  A: 

yes by using the user Control you can also inherits an existing control and changing it

ma7moud
+2  A: 

Yes it is.

Add a new UserControl and then inherit from the existing RichTextBox. You will have to override the onPaint method to create a richtextbox with rounded corners.

This article here may help you. It is based on a TextBox control (in VB) rather than a RichTextBox Control.

Barry