mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-06-28 13:34:09 +08:00
72 lines
2.6 KiB
C#
72 lines
2.6 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>
|
||
/// 页面管理,Pages里加多个页面,切换显示
|
||
/// </summary>
|
||
public partial class PageManger : Element<CPF.Controls.PageManger>
|
||
{
|
||
|
||
/// <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; }
|
||
/// <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; }
|
||
/// <summary>
|
||
/// 获取或设置描述 Thickness 及其子元素之间的空间量的 Border 值。格式:all或者left,top,right,bottom
|
||
/// <summary>
|
||
[Parameter] public Thickness? Padding { get; set; }
|
||
[Parameter] public int? PageIndex { get; set; }
|
||
/// <summary>
|
||
/// 表示一个文本修饰,它是可添加到文本的视觉装饰(如下划线)。字符串格式: overline/Underline/Strikethrough/none [width[,Solid/Dash/Dot/DashDot/DashDotDot]] [color]
|
||
/// <summary>
|
||
[Parameter] public TextDecoration? TextDecoration { get; set; }
|
||
[Parameter] public EventCallback Initialized { get; set; }
|
||
|
||
}
|
||
}
|