GUI桌面环境

This commit is contained in:
2026-03-01 17:03:49 +08:00
parent 545f40cf95
commit f0a9223520
162 changed files with 9170 additions and 135 deletions

View File

@@ -0,0 +1,23 @@
namespace CMLeonOS.UILib.Animations
{
/// <summary>
/// Defines the direction of an easing type.
/// </summary>
internal enum EasingDirection
{
/// <summary>
/// Starts the animation slowly, and finishes at full speed.
/// </summary>
In,
/// <summary>
/// Starts the animation at full speed, and finishes slowly.
/// </summary>
Out,
/// <summary>
/// Starts the animation slowly, reaches full speed at the middle, and finishes slowly.
/// </summary>
InOut
}
}