// 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
{
///
/// 多边形
///
public partial class Polygon : Element
{
[Parameter] public string Fill { get; set; }
///
/// 事件响应范围是路径的线条上还是路径围成的范围内,true就是在线条上
///
[Parameter] public bool? IsHitTestOnPath { get; set; }
[Parameter] public string StrokeFill { get; set; }
[Parameter] public Stroke? StrokeStyle { get; set; }
}
}