tags:

views:

30

answers:

1

How to make glossy button in Vb.Net?

or

how change button background on mouseover?

A: 

If you are using WinForms, you usually achieve this by creating a new class inheriting from System.Windows.Forms.ButtonBase.

From there, overwrite OnMouseEnter, OnMouseLeave, and OnPaint to draw a button to your specifications.

Andrew Moore