mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-03 12:37:40 +08:00
cbd9e53058
* 添加CountDown的reset功能,设置绑定的value后countdown会自动刷新 * 在CountDown Dispose时释放内部Timer * update demo Co-authored-by: James Yeung <shunjiey@hotmail.com>
60 lines
1.5 KiB
C#
60 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.AspNetCore.Components;
|
|
using OneOf;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public abstract class StatisticComponentBase<T> : AntDomComponentBase
|
|
{
|
|
/// <summary>
|
|
/// 设置数值的前缀
|
|
/// </summary>
|
|
[Parameter] public string Prefix { get; set; }
|
|
|
|
[Parameter] public RenderFragment PrefixTemplate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置数值的后缀
|
|
/// </summary>
|
|
[Parameter] public string Suffix { get; set; }
|
|
|
|
[Parameter] public RenderFragment SuffixTemplate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数值的标题
|
|
/// </summary>
|
|
[Parameter] public string Title { get; set; }
|
|
|
|
[Parameter] public RenderFragment TitleTemplate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数值内容
|
|
/// </summary>
|
|
[Parameter] public virtual T Value { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置数值的样式
|
|
/// </summary>
|
|
[Parameter] public string ValueStyle { get; set; }
|
|
|
|
[Parameter] public RenderFragment ChildContent { get; set; }
|
|
|
|
private void SetClassMap()
|
|
{
|
|
string prefixName = "ant-statistic";
|
|
ClassMapper
|
|
.Add(prefixName)
|
|
.If($"{prefixName}-rtl", () => RTL);
|
|
}
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
base.OnInitialized();
|
|
|
|
SetClassMap();
|
|
}
|
|
}
|
|
}
|