mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
c9656ca227
* feat(module: image): add image * add image preview * add locale
35 lines
1.3 KiB
C#
35 lines
1.3 KiB
C#
using System.Globalization;
|
|
using System.Text.Encodings.Web;
|
|
using AntDesign;
|
|
using AntDesign.JsInterop;
|
|
using Microsoft.Extensions.DependencyInjection.Extensions;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Microsoft.Extensions.DependencyInjection
|
|
{
|
|
public static class ServiceCollectionExtensions
|
|
{
|
|
public static IServiceCollection AddAntDesign(this IServiceCollection services)
|
|
{
|
|
services.TryAddScoped<DomEventService>();
|
|
services.TryAddScoped(sp => new HtmlRenderService(new HtmlRenderer(sp, sp.GetRequiredService<ILoggerFactory>(),
|
|
s => HtmlEncoder.Default.Encode(s)))
|
|
);
|
|
|
|
services.TryAddSingleton<IComponentIdGenerator, GuidComponentIdGenerator>();
|
|
services.TryAddScoped<IconService>();
|
|
services.TryAddScoped<InteropService>();
|
|
services.TryAddScoped<NotificationService>();
|
|
services.TryAddScoped<MessageService>();
|
|
services.TryAddScoped<ModalService>();
|
|
services.TryAddScoped<DrawerService>();
|
|
services.TryAddScoped<ConfirmService>();
|
|
services.TryAddScoped<ImageService>();
|
|
|
|
CultureInfo.DefaultThreadCurrentUICulture = CultureInfo.CurrentCulture;
|
|
|
|
return services;
|
|
}
|
|
}
|
|
}
|