A brief discussion on the usage of Bootstrap Blazor components

青灯夜游
Release: 2021-03-12 10:22:51
forward
2654 people have browsed it

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.

A brief discussion on the usage of Bootstrap Blazor components

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

Installation Guide

  • Install dotnet SDK Portal
  • Install Visual Studio 2019 v16.8 Portal

Project template

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

Integrate BootstrapBlazor into existing projects

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>
Copy after login

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
    }
}
Copy after login

Visual Studio Plug-in

Install Visual Studio Plug-in

Installation package

Download address: https://gitee.com/Longbow/BootstrapBlazorVsix/raw/master/dist/BootstrapBlazor.UITemplate-5.0.0.zip

Usage tutorial

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

A brief discussion on the usage of Bootstrap Blazor componentsA brief discussion on the usage of Bootstrap Blazor componentsA brief discussion on the usage of Bootstrap Blazor components

4. Open Visual Studio 2019

A brief discussion on the usage of Bootstrap Blazor componentsA brief discussion on the usage of Bootstrap Blazor componentsA brief discussion on the usage of Bootstrap Blazor componentsA brief discussion on the usage of Bootstrap Blazor components

# #5. Select the

Server or WebAssembly project to run directly F5

A brief discussion on the usage of Bootstrap Blazor components

6. Follow your own instructions in the project Requirements change page

For more programming-related knowledge, please visit:

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!

Related labels:
source:cnblogs.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template