29 lines
774 B
C#
29 lines
774 B
C#
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";
|
|
}
|
|
}
|
|
}
|