WebExpress.DownloadItem.UserControl_MouseLeave C# (CSharp) Method

UserControl_MouseLeave() private method

private UserControl_MouseLeave ( object sender, System e ) : void
sender object
e System
return void
        private void UserControl_MouseLeave(object sender, System.Windows.Input.MouseEventArgs e)
        {
            BrushConverter converter = new BrushConverter();

            bg.Background = (SolidColorBrush)converter.ConvertFromString("#FFF");
            SolidColorBrush scb = (SolidColorBrush)converter.ConvertFromString("#FFE2E2E2");
            Color color = scb.Color;
            StaticFunctions.AnimateColor(color, Colors.White, bg, 0.2);
        }