通过Blazor使用C#开发SPA单页面应用程序(4) - Ant Design Button
2021-02-07 16:14
标签:only download -o ide pes span 基础 end class 前面学习了Blazor的特点、环境搭建及基础知识,现在我们尝试的做个实际的组件。 Ant Design是蚂蚁金服是基于Ant Design设计体系的 UI 组件库,主要用于研发企业级中后台产品。目前官方是基于React和Angular实现的,今年也推出了Vue的实现。其组件涵盖面较广,其组件风格及交互效果还是比较惊艳的,后面准备利用Ant Design的样式文件利用Blazor模仿几个组件的实现。 由于也是新学的Blazor开发,可能实现的方式有些笨拙,希望高手提出宝贵意见,先看看实现的Button 按钮、Grid 栅格、导航栏的效果。
先来看看Button按钮,它支持多种风格,是否只显示图标,loading状态等。实现步骤及主要代码且听我娓娓道来, 首先去antd.css cdn 下载稳定版的css文件,放到 wwwroot 文件夹下。再 _Host.cshtml 引用该文件。 AButtonBase类定义了按钮的属性参数;注册了class名称(例如:class="ant-btn ant-btn-primary")的计算表达式,class内容是根据属性参数的设置情况计算出来的。 属性set 的 ClassMapper.Dirty() 是通知样式名生成方法属性改变了需要重新生成样式名称。 而ClassMapper是用于注册组件需要用到的样式构建类,PrefixCls()是添加样式共用的前缀,Add有多个重载,可以是直接的样式名称;也可以是根据第一个参数的bool表达式来确定,第二个参数的样式是否启用。 AButtonSizes、AButtonTypes、AButtonShapes、AButtonHTMLTypes 属性参数是定义的枚举,例如: AButtonBase类继承自自定义的BaseComponent,BaseComponent继承自Blazor的ComponentBase类。 BaseComponent主要定义了所有组件共用的属性,ElementId、Style、ClassMapper等, 其中 @inherits BlazorAntDesign.General.AButtonBase 是代码隐藏方式,指定后台代码继承自AButtonBase类,button class="@ClassMapper.Class",将采用的样式根据指定的属性值计算出来赋值给button的class属性。下面根据属性设置判断是否显示图标、标题、子内容。 建立DemoButton.razor文件,样例代码如下: @page "/DemoButton" 为组件路由 @using BlazorAntDesign.General; 为应用组件命名空间 好了Button的实现思路今天就学习到这了,希望有兴趣的同仁共同学习探讨,让Blazor真正走向SPA开发的舞台,让.net core七龙珠面向全栈开发,更好的拥抱社区,刷新业界对.net体系的认知。 Blazor 在发展: 微软已将 Blazor 移出了实验阶段,进入了官方预览版。使用组件模型进行服务器端渲染的 Blazor 版本将与.NET Core 3 的最终版本一起发布(请参阅.NET Core 路线图),客户端版本将在随后不久发布。还有工作要完成:调试体验极其有限,必须改进;有机会通过提前编译生成本机 Wasm 来优化代码性能;在将未使用的代码库发送到浏览器之前,需要从库中删除未使用的代码,从而降低总体大小(这个过程称为树抖动)。对 WebAsssembly 的兴趣和采用与日俱增,借助 Blazor,编写可以在任何地方运行的 C#和.NET 代码的梦想终于实现了。 通过Blazor使用C#开发SPA单页面应用程序(4) - Ant Design Button 标签:only download -o ide pes span 基础 end class 原文地址:https://www.cnblogs.com/liuxtj/p/11377680.html 1、引用样式文件
2、建立 AButtonBase 类
using BlazorAntDesign.Core;
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.RenderTree;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BlazorAntDesign.General
{ public class AButtonBase : BaseComponent
{
#region Properties
///
namespace BlazorAntDesign.General
{
///
namespace BlazorAntDesign.General
{
///
Danger
}
}using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Components;
namespace BlazorAntDesign.Core
{
public abstract class BaseComponent : ComponentBase, IDisposable
{
#region Members
private bool disposed;
private ElementRef elementRef;
#endregion
#region Constructors
public BaseComponent()
{
ElementId = Utils.IDGenerator.Instance.Generate;
ClassMapper = new ClassMapper();
RegisterClasses();
}
#endregion
#region Methods
protected virtual void RegisterClasses()
{
ClassMapper.AddCustomClass(() => customClass);
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (!disposed)
{
if (disposing)
{
if (ClassMapper != null)
{
//ClassMapper.Dispose();
ClassMapper = null;
}
}
disposed = true;
}
}
#endregion
#region Properties
///
3、建立 AButton.razor
@inherits BlazorAntDesign.General.AButtonBase
button class="@ClassMapper.Class"
type="@(Enum.GetName(typeof(AButtonHTMLTypes), HtmlType).ToLower())"
ant-click-animating-without-extra-node="@(click_animating ? "true" : "")"
disabled="@Disabled"
@onkeydown="@buttonDown"
@onmousedown="@buttonDown"
@onkeyup="@buttonUp"
@onmouseup="@buttonUp"
@onclick="@OnClick">
@*图标*@
@if (Loading)
{AIcon IconName="loading">AIcon>}
else
{
if (!string.IsNullOrEmpty(IconName))
{AIcon IconName="@IconName">AIcon>}
}
@*标题*@
@if (!string.IsNullOrEmpty(Title))
{span>@Titlespan>}
@*子内容*@
@ChildContentbutton>
4、使用 AButton
@page "/DemoButton"
@using BlazorAntDesign.General;
div style="border:1px solid beige;padding:10px">
AButton Title="Default">AButton>
AButton Title="Primary" ButtonType="AButtonTypes.Primary">AButton>
AButton Title="Danger" ButtonType="AButtonTypes.Danger">AButton>
AButton Title="Dashed" ButtonType="AButtonTypes.Dashed">AButton>
AButton Title="Disabled" Disabled="true">AButton>
AButton ButtonType="AButtonTypes.Primary" IconName="download" ButtonShape="AButtonShapes.Circle">AButton>
AButton Title="下载" ButtonType="AButtonTypes.Primary" IconName="download" ButtonShape="AButtonShapes.Round">AButton>
AButton Title="下载" ButtonType="AButtonTypes.Primary" IconName="download">AButton>
AButtonGroup>AButton ButtonType="AButtonTypes.Primary" IconName="left">BackwardAButton>AButton ButtonType="AButtonTypes.Primary">ForwardAIcon IconName="right" />AButton>AButtonGroup>
AButton Title="Loading" ButtonType="AButtonTypes.Primary" Loading="true">AButton>
AButton Title="Click me!" ButtonType="AButtonTypes.Primary" Loading="@isLoading" OnClick="@(()=> { isLoading = true; })">AButton>
div>
div style="border:1px solid beige;padding:10px;margin-top:5px">
AButton IconName="search" ButtonType="AButtonTypes.Primary" ButtonShape="AButtonShapes.Circle">AButton>
AButton IconName="search" ButtonType="AButtonTypes.Primary">按钮AButton>
AButton IconName="search" ButtonShape="AButtonShapes.Circle">AButton>
AButton IconName="search">按钮AButton>
AButton IconName="search" ButtonType="AButtonTypes.Dashed" ButtonShape="AButtonShapes.Circle">AButton>
AButton IconName="search" ButtonType="AButtonTypes.Primary">按钮AButton>
div>
@code{
private bool isLoading = false;
private void LoadingClick()
{
isLoading = true;
}
}
番 外 篇
.net core将踏上新的征程:
上一篇:js面向对象实现放大镜
下一篇:C# Dispose模式
文章标题:通过Blazor使用C#开发SPA单页面应用程序(4) - Ant Design Button
文章链接:http://soscw.com/index.php/essay/52247.html