2024-01-08 20:55:43 +08:00
|
|
|
|
// CPF自动生成.
|
|
|
|
|
|
|
|
|
|
using CPF;
|
|
|
|
|
using CPF.Controls;
|
|
|
|
|
using CPF.Drawing;
|
|
|
|
|
using CPF.Input;
|
|
|
|
|
using CPF.Razor;
|
|
|
|
|
using CPF.Shapes;
|
|
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace CPF.Razor.Controls
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 左右切换的按钮
|
|
|
|
|
/// </summary>
|
2024-01-09 00:39:58 +08:00
|
|
|
|
public partial class Switch : Element<CPF.Controls.Switch> ,IHandleChildContentText
|
2024-01-08 20:55:43 +08:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <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; }
|
|
|
|
|
/// <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 Nullable<bool> IsChecked { get; set; }
|
|
|
|
|
[Parameter] public bool? IsThreeState { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 关闭时候显示的背景色
|
|
|
|
|
/// <summary>
|
|
|
|
|
[Parameter] public string OffColor { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 打开时候显示的背景色
|
|
|
|
|
/// <summary>
|
|
|
|
|
[Parameter] public string OnColor { 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 Checked { get; set; }
|
|
|
|
|
[Parameter] public EventCallback Indeterminate { get; set; }
|
|
|
|
|
[Parameter] public EventCallback Unchecked { get; set; }
|
|
|
|
|
[Parameter] public EventCallback<CPF.RoutedEventArgs> Click { get; set; }
|
|
|
|
|
[Parameter] public EventCallback Initialized { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|