mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
1877592211
* feat: modal support template * feat: modal update * feat: modal update * feat: modal update * feat: modal update * docs: fix ci * fix: demo title Co-authored-by: James Yeung <shunjiey@hotmail.com>
25 lines
572 B
C#
25 lines
572 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class DrawerClosingEventArgs
|
|
{
|
|
|
|
public DrawerClosingEventArgs() { }
|
|
|
|
public DrawerClosingEventArgs(bool cancel)
|
|
{
|
|
Cancel = cancel;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取或设置一个值,该值指示是否应取消事件。
|
|
/// 返回结果: true 如果应取消事件;否则为 false。
|
|
/// </summary>
|
|
public bool Cancel { get; set; }
|
|
}
|
|
}
|