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.
24 lines
1.3 KiB
24 lines
1.3 KiB
namespace Lsw.Abp.AntDesignThemeManagement.Settings;
|
|
|
|
public static class AntDesignThemeManagementSettingNames
|
|
{
|
|
public const string GroupName = "Lsw.AntDesignTheme";
|
|
|
|
public const string EnableThemeSettings = GroupName + ".EnableThemeSettings";
|
|
public const string EnablePageStyleSetting = GroupName + ".Enable.PageStyleSetting";
|
|
public const string EnableNavigationModeSetting = GroupName + ".Enable.NavigationModeSetting";
|
|
public const string EnableRegionalSettings = GroupName + ".Enable.RegionalSettings";
|
|
public const string EnableOtherSettings = GroupName + ".Enable.OtherSettings";
|
|
|
|
public const string ThemeStyle = GroupName + ".ThemeStyle";
|
|
public const string NavigationMode = GroupName + ".NavigationMode";
|
|
public const string ContentWidth = GroupName + ".ContentWidth";
|
|
public const string FixedHeader = GroupName + ".FixedHeader";
|
|
public const string FixSiderbar = GroupName + ".FixSiderbar";
|
|
public const string SplitMenus = GroupName + ".SplitMenus";
|
|
public const string ShowHeader = GroupName + ".Region.Header";
|
|
public const string ShowFooter = GroupName + ".Region.Footer";
|
|
public const string ShowMenu = GroupName + ".Region.Menu";
|
|
public const string ShowMenuHeader = GroupName + ".Region.MenuHeader";
|
|
public const string ColorWeak = GroupName + ".ColorWeak";
|
|
}
|
|
|