mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-06-28 13:34:09 +08:00
80 lines
3.0 KiB
C#
80 lines
3.0 KiB
C#
![]() |
// CPF自动生成.
|
|||
|
|
|||
|
using CPF;
|
|||
|
using CPF.Controls;
|
|||
|
using CPF.Drawing;
|
|||
|
using CPF.Input;
|
|||
|
using CPF.Razor;
|
|||
|
using CPF.Shapes;
|
|||
|
using Microsoft.AspNetCore.Components;
|
|||
|
|
|||
|
namespace CPF.Razor.Controls
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 表示从按下按钮到释放按钮的时间内重复引发其 Click 事件的控件。
|
|||
|
/// </summary>
|
|||
|
public partial class RepeatButton : Element<CPF.Controls.RepeatButton>
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 背景填充
|
|||
|
/// <summary>
|
|||
|
[Parameter] public string Background { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 边框线条填充
|
|||
|
/// <summary>
|
|||
|
[Parameter] public string BorderFill { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 获取或设置线条类型
|
|||
|
/// <summary>
|
|||
|
[Parameter] public Stroke? BorderStroke { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 四周边框粗细
|
|||
|
/// <summary>
|
|||
|
[Parameter] public Thickness? BorderThickness { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 边框类型,BorderStroke和BorderThickness
|
|||
|
/// <summary>
|
|||
|
[Parameter] public BorderType? BorderType { get; set; }
|
|||
|
[Parameter] public ClickMode? ClickMode { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 内容可以是字符串,UI元素等等
|
|||
|
/// <summary>
|
|||
|
[Parameter] public object Content { get; set; }
|
|||
|
[Parameter] public string ContentStringFormat { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 获取或设置一个值,该值表示将 Border 的角倒圆的程度。格式 一个数字或者四个数字 比如10或者 10,10,10,10 topLeft,topRight,bottomRight,bottomLeft
|
|||
|
/// <summary>
|
|||
|
[Parameter] public CornerRadius? CornerRadius { get; set; }
|
|||
|
[Parameter] public int? Delay { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 字体名
|
|||
|
/// <summary>
|
|||
|
[Parameter] public string FontFamily { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 字体尺寸,点
|
|||
|
/// <summary>
|
|||
|
[Parameter] public float? FontSize { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 字体样式
|
|||
|
/// <summary>
|
|||
|
[Parameter] public FontStyles? FontStyle { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 控件文字的填充
|
|||
|
/// <summary>
|
|||
|
[Parameter] public string Foreground { get; set; }
|
|||
|
[Parameter] public int? Interval { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 获取或设置描述 Thickness 及其子元素之间的空间量的 Border 值。格式:all或者left,top,right,bottom
|
|||
|
/// <summary>
|
|||
|
[Parameter] public Thickness? Padding { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 表示一个文本修饰,它是可添加到文本的视觉装饰(如下划线)。字符串格式: overline/Underline/Strikethrough/none [width[,Solid/Dash/Dot/DashDot/DashDotDot]] [color]
|
|||
|
/// <summary>
|
|||
|
[Parameter] public TextDecoration? TextDecoration { get; set; }
|
|||
|
[Parameter] public EventCallback<CPF.RoutedEventArgs> Click { get; set; }
|
|||
|
[Parameter] public EventCallback Initialized { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|