using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using GeoSigma.SigmaDrawerStyle.Converter; namespace SigmaDrawerElement.Converter { public class ProportionStyleConverter : EnumConverter { protected override Dictionary CreateMaps() { return new Dictionary { {ProportionStyle.styleSimple, "普通式"}, {ProportionStyle.styleContemporaneity, "现代式"}, {ProportionStyle.stylePopular, "流行式"}, }; } } }