This article will introduce to you the usage of Bootstrap Blazor components. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.
Related recommendations: "bootstrap Tutorial"
Bootstrap Blazor is a set of enterprise-level UI component libraries, adapted for mobile support Various mainstream browsers have been used in multiple delivery projects. This set of components can greatly shorten the development cycle and save development costs. At present, more than 70 components have been developed and packaged, and interested students are welcome to try it out.
Gitee The open source address is: https://gitee.com/LongbowEnterprise/BootstrapBlazor
Github The open source address is: https://github.com/ArgoZhang/BootstrapBlazor
Online demo website :https://www.blazor.zone
1. Installation template
dotnet new -i Bootstrap.Blazor.Templates::*
2. Use the project template to create a new project
dotnet new bbapp
bbapp
is the abbreviation of BootstrapBlazor App
3. Uninstall project templates
dotnet new -u Bootstrap.Blazor.Templates
1. Get the BootstrapBlazor package from Nuget.org
dotnet add package BootstrapBlazor
2. Add style files and scripts to the project filePages/_Host.cshtml (Server )
or wwwroot/index.html (WebAssembly)
HTML
<!DOCTYPE html> <html lang="en"> <head> . . . <link rel="stylesheet" href="_content/BootstrapBlazor/css/bootstrap.blazor.bundle.min.css"> </head> <body> . . . <script src="_framework/blazor.server.js"></script> <script src="_content/BootstrapBlazor/js/bootstrap.blazor.bundle.min.js"></script> </body> </html>
3. Registration service~/Startup. cs
C
#namespace BootstrapBlazorAppName { public class Startup { public void ConfigureServices(IServiceCollection services) { //more code may be present here services.AddBootstrapBlazor(); } //more code may be present here } }
Install Visual Studio Plug-in
Download address: https://gitee.com/Longbow/BootstrapBlazorVsix/raw/master/dist/BootstrapBlazor.UITemplate-5.0.0.zip
1. Download the installation package
2. Unzip the installation package
3. Install the vsix plug-in
Double-clickBootstrapBlazor.UITemplate.vsix
file, please ensure that Visual Studio IDE
and related processes are closed. The installation process of this installation package may be very slow, please wait patiently
Special Attention
If there is no response for a long time, please check whether there is a devenv.exe
or msbuild.exe
process in the task manager. If there is, please end it manually
4. Open Visual Studio 2019
Server or
WebAssembly project to run directly
F5
Programming Video! !
The above is the detailed content of A brief discussion on the usage of Bootstrap Blazor components. For more information, please follow other related articles on the PHP Chinese website!