You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
505 B
C#

1 month ago
using System.Collections.Generic;
namespace GeoSigma.SigmaDrawerStyle.Converter
{
/// <summary>
/// 线端
/// </summary>
public class CurveCapConverter : EnumConverter<CurveCap>
{
/// <inheritdoc/>
protected override Dictionary<CurveCap, string> CreateMaps()
{
return new Dictionary<CurveCap, string>()
{
{ CurveCap.Round, "圆头" },
{ CurveCap.Square, "方头" },
};
}
}
}