C#: win form - how to amplify button when cursor on it

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • budgie1212
    New Member
    • Jul 2008
    • 1

    C#: win form - how to amplify button when cursor on it

    How to make the button appear larger when cursor moves on it, and back to original size when cursor moves away.

    the buttons is in a windows form.

    thanks.
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    Use the mouseover and mouseout events to detect if the mouse is over your button.
    Then you can just adjust the size/location of the button

    Comment

    Working...