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.
kev/Drawer/UCDraw/SigmaDrawerStyle/Converter/CurveAlphaModeConverter.cs

22 lines
615 B
C#

using System.Collections.Generic;
namespace GeoSigma.SigmaDrawerStyle.Converter
{
/// <summary>
/// 透明
/// </summary>
public class CurveAlphaModeConverter : EnumConverter<CurveAlphaMode>
{
/// <inheritdoc/>
protected override Dictionary<CurveAlphaMode, string> CreateMaps()
{
return new Dictionary<CurveAlphaMode, string>()
{
{ CurveAlphaMode.None, "无" },
{ CurveAlphaMode.Alphand, "透明相与" },
{ CurveAlphaMode.Transparent, "透明度" },
};
}
}
}