views:

49

answers:

1

I have a WPF application written in C#.

I have made a button. I changed the background color.

How can I change the bluish color when mouse is over my button? And how to control animation/change time?

+3  A: 

http://msdn.microsoft.com/en-us/magazine/cc163421.aspx

You will need to look into creating a 'style' for your button. This will be done in XAML, you will find Microsoft Expression Blend really simplifies the design of most aspects of your WPF projects.

halfevil