AbpDisplayNameAttribute.cs 472 B

123456789101112131415161718
  1. using System.ComponentModel;
  2. namespace Abp.Localization
  3. {
  4. public class AbpDisplayNameAttribute : DisplayNameAttribute
  5. {
  6. public override string DisplayName => LocalizationHelper.GetString(SourceName, Key);
  7. public string SourceName { get; set; }
  8. public string Key { get; set; }
  9. public AbpDisplayNameAttribute(string sourceName, string key)
  10. {
  11. SourceName = sourceName;
  12. Key = key;
  13. }
  14. }
  15. }