加载 (Loading)

主要用于耗时操作等待提示。

概述

  • 用于耗时操作提示

代码演示

1.默认示例

namespace WebSite.Docus.Feedback.Loadings;

class Loading1 : BaseComponent
{
    protected override void BuildRenderTree(RenderTreeBuilder builder)
    {
        builder.Button("提交", Callback(OnLoading), StyleType.Primary);
    }

    private void OnLoading()
    {
        UI.ShowLoading("数据提交中...");
        Task.Run(() =>
        {
            Thread.Sleep(2000);
            UI.CloseLoading();
        });
    }
}