views:

152

answers:

1

It is possible to make RichTextBox have corner radius in wpf. i know it can achive using ControlTemplate but how?

I hope some of you may provide me with a hint.

+1  A: 

How about putting a border around it?

 <Border BorderThickness="2" CornerRadius="6">
 <your:RichTextBox />
 </Border>
klausbyskov
I dont want to use extra border, i want that my RictTextBox should have CornerRadius like property.
Firoz