using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using TeamAAS_VP.Attributes; using TeamAAS_VP.Resources.Languages; using TeamAAS_VP.ValueConverter; namespace TeamAAS_VP.Enums { /// /// 机器人品牌 /// [TypeConverter(typeof(EnumLocalizationConverter))] public enum RobotBrand { [Description("默认")] [Localization (ResourceName = "RobotBrand_默认", ResourceType = typeof(Lang))] Default = 0, [Description("爱普生")] [Localization(ResourceName = "RobotBrand_EPSON", ResourceType = typeof(Lang))] EPSON = 1, [Description("发那科")] [Localization(ResourceName = "RobotBrand_FANUC", ResourceType = typeof(Lang))] FANUC =2, [Description("施耐德")] [Localization(ResourceName = "RobotBrand_Schneider", ResourceType = typeof(Lang))] Schneider =3, [Description("XYZ模组平台")] [Localization(ResourceName = "RobotBrand_XYZ_Platform", ResourceType = typeof(Lang))] XYZ_Platform = 11, [Description("XYZU模组平台")] [Localization(ResourceName = "RobotBrand_XYZU_Platform", ResourceType = typeof(Lang))] XYZU_Platform = 12, } }