You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
512 B
18 lines
512 B
using System;
|
|
using System.Windows;
|
|
using System.Windows.Media.Animation;
|
|
|
|
namespace W10SS_GUI
|
|
{
|
|
internal class Animation
|
|
{
|
|
internal static void NewAnimationFactory()
|
|
{
|
|
DoubleAnimation hamburgerAnimation = new DoubleAnimation
|
|
{
|
|
Duration = new Duration(new TimeSpan(hours: 0, minutes: 0, seconds: (int)GuiEnum.AnimationHamburgerDuration)),
|
|
SpeedRatio = (double)GuiEnum.AnimationHamburgerSpeedRatio
|
|
};
|
|
}
|
|
}
|
|
}
|