Blazor UI库 Bootstrap Blazor 快速上手 (v7.5.7)

最近组件库更新比较频繁,有些同学感觉有点迷茫,就着今天刚上了张老板一节课立马撸个新的上手教程回馈社区, ;->

1.新建工程b18QuickStartv757,将项目添加到解决方案中

dotnet new blazorserver -o b18QuickStartv757
dotnet sln add b18QuickStartv757/b18QuickStartv757.csproj

2.使用 nuget.org 进行 BootstrapBlazor 组件安装, FreeSql sqlite库,字体 ..

dotnet add b18QuickStartv757 package BootstrapBlazor
dotnet add b18QuickStartv757 package BootstrapBlazor.FontAwesome

2.样式表和Javascript 引用

增加主题样式表到 Pages/_Host.cshtml 文件中

删除 <link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />

并在下面添加两行

<link href="_content/BootstrapBlazor.FontAwesome/css/font-awesome.min.css" rel="stylesheet">
<link href="_content/BootstrapBlazor/css/bootstrap.blazor.bundle.min.css" rel="stylesheet">

添加 Javascript 引用到 Pages/_Host.cshtml 文件中

<script src="_framework/blazor.server.js"></script> 之前添加

<script src="_content/BootstrapBlazor/js/bootstrap.blazor.bundle.min.js" asp-append-version="true"></script>

3.添加增加命名空间引用到 _Imports.razor 文件中

@using BootstrapBlazor.Components

4.增加 BootstrapBlazorRoot 组件到 App.razor 文件中

<BootstrapBlazorRoot>
    <Router AppAssembly="@typeof(App).Assembly">
        ...
    </Router>
</BootstrapBlazorRoot>

5.添加BootstrapBlazor服务到 Program.cs 文件中

builder.Services.AddSingleton<WeatherForecastService>(); 后加入

builder.Services.AddBootstrapBlazor();

以下步骤纯属个人喜好 , 改造原版 NavMenu 组件

6. 新建 menu.js 文件

wwwroot 建立 modules文件夹, 新建 menu.js 文件

import Data from "../_content/BootstrapBlazor/modules/data.js";
import EventHandler from "../_content/BootstrapBlazor/modules/event-handler.js";

export function init(id) {
    var el = document.getElementById(id)
    if (el === null) {
        return
    }
    const navbar = el.querySelector('.navbar-toggler')
    const menu = el.querySelector('.sidebar-content')
    const nav = { navbar, menu }
    Data.set(id, nav)

    EventHandler.on(navbar, 'click', () => {
        menu.classList.toggle('show')
    })
    EventHandler.on(menu, 'click', '.nav-link', e => {
        const link = e.delegateTarget
        const url = link.getAttribute('href');
        if (url !== '#') {
            menu.classList.remove('show')
        }
    })
}

export function dispose(id) {
    const nav = Data.get(id)
    if (nav) {
        EventHandler.off(nav.navbar, 'click');
        EventHandler.off(nav.menu, 'click', '.nav-link');
    }
}

7. 替换 Shared\NavMenu.razor 文件

@inherits BootstrapModuleComponentBase
@attribute [JSModuleAutoLoader("./modules/menu.js", Relative = false)]

<div id="@Id">
    <div class="navbar d-flex d-md-none px-3">
        <a class="navbar-brand" href="">Demo</a>
        <button class="navbar-toggler" aria-label="toggle">
            <span class="navbar-toggler-icon"></span>
        </button>
    </div>

    <div class="sidebar-content collapse d-md-block">
        <div class="scroll">
            <Menu Items="@Menus" IsVertical="true" IsAccordion="true" IsExpandAll="true" />
        </div>
    </div>
</div>

8. 新建 Shared\NavMenu.razor.cs 文件

using BootstrapBlazor.Components;
using Microsoft.AspNetCore.Components.Routing;

namespace b18QuickStartv757.Shared;

public partial class NavMenu
{
    private IEnumerable<MenuItem> Menus { get; set; } = new List<MenuItem>
    {
            new MenuItem() { Text = "首页", Url = "/"  , Match = NavLinkMatch.All},
            new MenuItem() { Text = "Counter", Url = "/counter" },
            new MenuItem() { Text = "Fetch data", Url = "/fetchdata" },
            new MenuItem() { Text = "工具" ,Items= new List<MenuItem>
                {
                    new MenuItem() { Text = "Counter", Url = "/counter" },
                    new MenuItem() { Text = "Fetch data", Url = "/fetchdata" },
               }
            },
    };
}

9. 替换 Shared\MainLayout.razor 文件

@inherits LayoutComponentBase
@using System.Reflection

<section class="section">
    <div class="sidebar">
        <div class="sidebar-title">
            <span class="sidebar-text">DEMO</span>
        </div>
        <NavMenu />
    </div>
    <div class="main">
        <div class="content px-3">
            <Tab ClickTabToNavigation="true"
                 ShowExtendButtons="true"
                 ShowClose="true"
                 Body=@Body />
        </div>
    </div>
</section>

10. 替换 Shared\MainLayout.razor.css 文件


.layout-main .main {
    background: rgba(16, 142, 233, 1);
    color: #fff;
    min-height: 120px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.main {
    flex: 1;
}

.sidebar .navbar-brand {
    font-size: 1.1rem;
}

.sidebar .nav-item {
    font-size: 0.875rem;
    padding-left: 6px;
}

    .sidebar .nav-item a {
        color: #444;
        border-radius: var(--bs-border-radius);
        display: flex;
        align-items: center;
        padding: .25rem 1.5rem;
        font-weight: 400;
    }

.sidebar .navbar {
    --bb-bg-navbar: #8548ff;
    background-color: var(--bb-bg-navbar);
}

.sidebar .sidebar-title {
    display: none;
}

.sidebar-text {
    font-weight: 700;
}

.menu .nav-link.nav-table {
    color: var(--bs-info);
    font-weight: bold;
}

    .menu .nav-link.nav-table:hover {
        color: unset;
    }

@media (max-width: 767.98px) {
    .main .top-row:not(.auth) {
        display: none;
    }

    .main .top-row.auth {
        justify-content: space-between;
    }

    .main .top-row a, .main .top-row .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .section {
        flex-direction: row;
        display: flex;
    }

    .sidebar {
        width: var(--bs-sidebar-width);
        height: calc(100vh);
        position: sticky;
        top: 0;
        border-right: solid 1px #c0c4cc;
        background-color: #f0f0f0;
        display: flex;
        flex-direction: column;
        margin-top: calc(var(--bs-header-height)*-1);
    }

        .sidebar .sidebar-content {
            height: calc(100vh - var(--bs-header-height));
        }

            .sidebar .sidebar-content.collapse {
                display: flex;
                flex-direction: column;
            }

        .sidebar .sidebar-title {
            height: 50px;
            display: flex;
            align-items: center;
            padding: 1rem;
            border-bottom: solid 1px #c0c4cc;
        }

        .sidebar .scroll {
            overflow-x: hidden;
            max-height: calc(100% - 36px);
            padding: 5px 0;
        }

            .sidebar .scroll .menu {
                width: var(--bs-sidebar-width);
            }
}

11. Index.razor 在@page下一行添加 attribute

@attribute [TabItemOption(Text = "Index")]

12. 运行

Blazor UI库 Bootstrap Blazor 快速上手 (v7.5.7)

原文链接:https://www.cnblogs.com/densen2014/p/17357815.html

本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Blazor UI库 Bootstrap Blazor 快速上手 (v7.5.7) - Python技术站

(0)
上一篇 2023年5月4日
下一篇 2023年5月4日

相关文章

  • C#动态绘制多条曲线的方法

    下面是详细讲解C#动态绘制多条曲线的方法的完整攻略。 标题 C#动态绘制多条曲线的方法 步骤 1. 准备工作 首先,我们需要在项目中添加Windows.Form控件和Chart控件。同时,需要引用System.Windows.Forms.DataVisualization库。 using System.Windows.Forms.DataVisualizat…

    C# 2023年6月1日
    00
  • C# Word 类库的深入理解

    下面我会详细讲解一下“C# Word类库的深入理解”的攻略。 1. Word类库概述 C# Word类库可以让我们通过编程方式操作Word文档。在使用C# Word类库之前需要先引入插件:Microsoft.Office.Interop.Word。该插件提供了对Word文档的操作接口。通过该插件,我们可以创建和修改Word文档,并实现一些自动化操作。 2. …

    C# 2023年5月15日
    00
  • C#实现字符串首字母大写的方法示例

    请您耐心阅读以下内容。 C#实现字符串首字母大写方法的完整攻略 字符串首字母大写操作在日常编程中是非常常见的,在C#语言中,实现字符串首字母大写有很多种方法。下面将会介绍两种比较常用的方法。 方法一:Substring方法实现 string str = "hello world"; string firstChar = str.Subst…

    C# 2023年6月8日
    00
  • JavaScript基于activexobject连接远程数据库SQL Server 2014的方法

    下面是JavaScript基于ActiveXObject连接远程数据库SQL Server 2014的方法的完整攻略及两条示例说明。 1.前置条件 在使用ActiveXObject连接SQL Server之前,需要确保你已经配置了以下条件: 安装SQL Server 2014及以上版本 安装SQL Server驱动程序(SQL Server native c…

    C# 2023年6月8日
    00
  • C#中隐式运行CMD命令行窗口的方法

    要在C#中隐式地运行CMD命令行窗口,可以使用System.Diagnostics命名空间中的Process类。下面是实现的步骤: 第一步:添加命名空间 我们需要添加System.Diagnostics命名空间。可以在代码开头添加以下语句: using System.Diagnostics; 第二步:创建Process对象 Process类提供了许多方法和属…

    C# 2023年6月7日
    00
  • C#中属性和成员变量的区别说明

    C#中属性和成员变量是两个不同的概念。在C#编程中,开发者需要清楚了解它们之间的区别和联系。下面是对属性和成员变量的详细解释: 成员变量是一个类的内部状态访问的变量,可以存储数据。而属性则提供了一种更加灵活的方式,用于类之间的交互和数据的访问。 成员变量可以是公共的、私有的,也可以是保护的。它们可以被其他的类直接访问,也可以通过类中方法来进行调用。成员变量在…

    C# 2023年5月31日
    00
  • 通过 C#/VB.NET 代码将 Excel 工作表拆分为单独的文件

    首先对于 “通过 C#/VB.NET 代码将 Excel 工作表拆分为单独的文件” 这个问题,我们可以采用以下步骤: 第一步:打开 Excel 文件 使用 C#/VB.NET 代码操作 Excel 需要安装 Microsoft Office 的相关库文件,一般可以通过 NuGet 安装。在打开 Excel 文件之前,需要先声明引用 Microsoft.Off…

    C# 2023年5月31日
    00
  • 协程作用域概念迭代RxTask 实现自主控制

    《协程作用域概念迭代RxTask 实现自主控制》是一个非常高级的主题,需要一定的编程基础和经验才能很好地理解和应用。以下是完整攻略,包括协程作用域的概念、迭代RxTask的实现以及如何实现自主控制。 协程作用域 协程作用域是指一种新的变量作用域,它是由 coroutineScope{} 函数创建的。在该作用域内的协程不会超出该作用域,这意味着,当离开该作用域…

    C# 2023年6月1日
    00
合作推广
合作推广
分享本页
返回顶部