mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-06 05:57:39 +08:00
b0c9509264
* fix(module:select): property rename to follow docs comma in decimal causing wrong css value for select box width comment translation * fix(module:select): delayed DefaultActiveFirstOption fix change of values fix
27 lines
787 B
C#
27 lines
787 B
C#
using Microsoft.AspNetCore.Components.Web;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class ModalClosingEventArgs
|
|
{
|
|
|
|
public ModalClosingEventArgs() { }
|
|
|
|
public ModalClosingEventArgs(MouseEventArgs mouseEvent, bool cancel)
|
|
{
|
|
Cancel = cancel;
|
|
MouseEvent = mouseEvent;
|
|
}
|
|
|
|
public MouseEventArgs MouseEvent { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置一个值,该值指示是否应取消事件。
|
|
/// 返回结果: true 如果应取消事件;否则为 false。
|
|
/// Gets or sets a value indicating whether the event should be cancelled.
|
|
/// Return result: true if the event should be cancelled; otherwise false.
|
|
/// </summary>
|
|
public bool Cancel { get; set; }
|
|
}
|
|
}
|