views:

33

answers:

2

Where can I find alternative button controls for vb.net Winform?

+1  A: 

Not sure what you mean since you can just choose the font so that it's any size you want and I've not seen anyone else mention this problem so I'm not sure if anyone will have written any specific controls for it. However, if you want to customize the look other options would be to override the OnPaint and draw it yourself or create an image that contains the text and show that image instead of the text.

ho1
A: 

Vendors that offer button controls with more options than standard WinForms:

infragistics.com

telerik.com

devexpress.com

I'd recommend downloading trial versions and see if you can make their controls do what you are failing to accomplish with the built in button control

Or, you could create an image that shows the text you want and attach it to the button instead of text. This is not as ideal as if you can find a small readable font though!

Michael