English | ็ฎไฝไธญๆ
- ๐ Enterprise-class UI designed for web applications.
- ๐ฆ A set of high-quality Blazor components out of the box.
- ๐ Supports WebAssembly-based client-side and SignalR-based server-side UI event interaction.
- ๐จ Supports Progressive Web Applications (PWA).
- ๐ก Build with C#, a multi-paradigm static language for an efficient development experience.
- ๐ Internationalization support for dozens of languages.
- ๐ Seamless integration with existing ASP.NET Core MVC and Razor Pages projects.
WebAssembly static hosting on:
- Supports .NET Core 3.1 / .NET 5 / .NET 6 / .Net 7 / .NET 8.
- Supports WebAssembly static file deployment.
- Supports 4 major browsers engines, and Internet Explorer 11+ (Blazor Server only)
- Supports .NET MAUI / WPF / Windows Forms and other Blazor Hybrid workloads.
- Supports Electron and other Web standards-based environments.
Due to WebAssembly restriction, Blazor WebAssembly doesn't support IE browser, but Blazor Server supports IE 11โ with additional polyfills. See official documentation.
From .NET 5, IE 11 is no longer officially supported. See Blazor: Updated browser support. Unofficial support is provided by Blazor.Polyfill community project.
Regularly synchronize with Official Ant Design specifications, you can check the sync logs online.
Therefore, you can use the custom theme styles of Ant Design directly.
Before the 1.0 release, we will only sync antd 4.x styles.
- Install .NET Core SDK 3.1.300 or later, .NET 8 is even better.
We have provided the dotnet new
template to create a Boilerplate project out of the box๏ผ
-
Install the template
$ dotnet new --install AntDesign.Templates
-
Create the Boilerplate project with the template
$ dotnet new antdesign -o MyAntDesignApp
Options for the template๏ผ
Options | Description | Type | Default |
---|---|---|---|
-f | --full |
If specified, generates all pages of Ant Design Pro | bool | false |
-ho | --host |
Specify the hosting model | 'wasm' | 'server' | 'hosted' | 'wasm' |
--styles |
Whether use NodeJS and Less to compile your custom themes. | css | less |
css |
--no-restore |
If specified, skips the automatic restore of the project on create | bool | false |
-
Go to the project folder of the application and install the Nuget package reference
$ dotnet add package AntDesign
-
Register the services in
Program.cs
builder.Services.AddAntDesign();
or
Startup.cs
services.AddAntDesign();
-
Add namespace in
_Imports.razor
@using AntDesign
-
To display the pop-up component dynamically, you need to add the
<AntContainer />
component inApp.razor
.- For Blazor WebApp, you also need to specify render mode to
<Routes />
for interactivity.
<Routes @rendermode="RenderMode.InteractiveAuto" /> <-- specify the rendermode โจ + <AntContainer @rendermode="RenderMode.InteractiveAuto" /> <-- add this component โจ
- For legacy blazor apps just add a line of code:
<Router AppAssembly="@typeof(MainLayout).Assembly"> <Found Context="routeData"> <RouteView RouteData="routeData" DefaultLayout="@typeof(MainLayout)" /> </Found> <NotFound> <LayoutView Layout="@typeof(MainLayout)"> <Result Status="404" /> </LayoutView> </NotFound> </Router> + <AntContainer /> <-- add this component โจ
- For Blazor WebApp, you also need to specify render mode to
-
Finally, it can be referenced in the
.razor
component!<Button Type="@ButtonType.Primary">Hello World!</Button>
Click the button below to start a new workspace for development for free.
-
Install .NET Core SDK 8.0.100 or later.
-
Install Node.js (only for building style files and interoperable TypeScript files)
-
Clone to local development
$ git clone https://github.com/ant-design-blazor/ant-design-blazor.git $ cd ant-design-blazor $ npm install $ dotnet build ./site/AntDesign.Docs.Build/AntDesign.Docs.Build.csproj $ npm start
-
Visit https://localhost:5001 in your supported browser and check local development documentation for details.
Visual Studio 2022 is recommended for development.
Check out this issue to learn about our development plans for the 1.0 release.
You can also find the latest news about the features we will implement in the future with antd5.0 style.
If you would like to contribute, feel free to create a Pull Request, or give us Bug Report.
This project is an MIT-licensed open source project. In order to achieve better and sustainable development of the project, we expect to gain more backers. We will use the proceeds for community operations and promotion. You can support us in any of the following ways:
We will put the detailed donation records on the backer list.
If you encounter any problems in the process, feel free to ask for help via following channels. We also encourage experienced users to help newcomers.
This project exists thanks to all the people who contribute.
This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information see the .NET Foundation Code of Conduct.
This project is supported by the .NET Foundation.