// //Standard MouseOver effects that can be added to any button within FormMain // #region standardButtons //The folowing two event handlers (standardButtonEnter and standardButtonLeave) are to //provide visual response for mouseover of the standard buttons private void standardButtonEnter(object sender, EventArgs e) { Button currentButton = sender as Button; ButtonAnimation.ButtonEnterEffect(this, currentButton); }