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.
15 lines
504 B
15 lines
504 B
using AntDesign;
|
|
using Volo.Abp.Settings;
|
|
|
|
namespace Lsw.Abp.AspnetCore.Components.Web.AntDesignTheme.Settings;
|
|
|
|
public class AntDesignSettingDefinitionProvider : SettingDefinitionProvider
|
|
{
|
|
public override void Define(ISettingDefinitionContext context)
|
|
{
|
|
context.Add(
|
|
new SettingDefinition(AntDesignSettingNames.MenuPlacement, MenuPlacement.Left.ToString()),
|
|
new SettingDefinition(AntDesignSettingNames.MenuTheme, MenuTheme.Dark.ToString())
|
|
);
|
|
}
|
|
}
|
|
|