mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 09:21:24 +08:00
6db07ad916
* feat: add component modal * fix: adjust namespace and fix TAB keyboard bug * fix: reset package.json to cuueernt head * fix: remove antblazor.sln * refactor: using c# to control the display and hiding of modal
32 lines
731 B
C#
32 lines
731 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class ButtonProps
|
|
{
|
|
public bool Block { get; set; } = false;
|
|
|
|
public bool Ghost { get; set; } = false;
|
|
|
|
public bool Search { get; set; } = false;
|
|
|
|
public bool Loading { get; set; } = false;
|
|
|
|
public string Type { get; set; } = ButtonType.Default;
|
|
|
|
public string Shape { get; set; } = null;
|
|
|
|
public string Size { get; set; } = AntSizeLDSType.Default;
|
|
|
|
public string Icon { get; set; }
|
|
|
|
public bool Disabled { get; set; }
|
|
|
|
public bool Danger { get; set; }
|
|
}
|
|
}
|