This commit is contained in:
2026-04-25 22:51:57 +08:00
7 changed files with 155 additions and 147 deletions

28
Constants/UIConstants.cs Normal file
View File

@@ -0,0 +1,28 @@
namespace AcdiuTools.Constants
{
/// <summary>
/// 全局 UI 常量定义
/// </summary>
public static class UIConstants
{
/// <summary>
/// 资源路径常量
/// </summary>
public static class Paths
{
/// <summary>
/// 默认 Bootstrap Icons SVG Sprite 文件路径
/// </summary>
public const string DefaultIconSprite = "/lib/bootstrap-icons-1.13.1/bootstrap-icons.svg";
}
/// <summary>
/// BS SVG 图标默认需要添加的 CSS 类名
/// </summary>
public static class Classes
{
public const string DefaultWidth = "w-1r";
public const string DefaultHeight = "h-1r";
}
}
}