Reputation: 21
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
Reputation:
I found the following link, it might help:
http://www.codeproject.com/Articles/17453/Textbox-with-rounded-corners
Upvotes: 0
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