KALYANA KUMAR
KALYANA KUMAR

Reputation: 21

How to set border radius for textbox

Is there any way to set the border radius property for a text box in windows forms.

I've tried in ASP.NET but I couldn't get in windows forms.

Upvotes: 0

Views: 20167

Answers (3)

sarathkumar
sarathkumar

Reputation: 428

I have found the answer in one blog .

Please check this

Upvotes: 0

user2621192
user2621192

Reputation:

I found the following link, it might help:

http://www.codeproject.com/Articles/17453/Textbox-with-rounded-corners

Upvotes: 0

Selman Genç
Selman Genç

Reputation: 101721

As far as I know, No, it is not possible in WinForms with standart TextBox control. Take a look at WPF, instead. That is much better than WinForms for example there is a Border.CornerRadius property that might help you.And there are so other options in WPF which doesn't exist in WinForms.

Upvotes: 1

Related Questions