EnumImageAttribute.cs 448 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NXWMS.Client.Code.Attributes
  6. {
  7. [AttributeUsage(AttributeTargets.Field)]
  8. public class EnumImageAttribute : Attribute
  9. {
  10. public EnumImageAttribute(string imagePathStr)
  11. {
  12. imagePath = imagePathStr;
  13. }
  14. public string imagePath
  15. {
  16. get;
  17. private set;
  18. }
  19. }
  20. }