SRCategoryAttribute.cs 461 B

1234567891011121314151617
  1. // 2012-10-25 add by chenxy
  2. using System;
  3. using System.ComponentModel;
  4. namespace Dongke.WinForm.Controls.InvoiceLayout
  5. {
  6. [AttributeUsage(AttributeTargets.All)]
  7. internal sealed class SRCategoryAttribute : CategoryAttribute
  8. {
  9. public SRCategoryAttribute(string category) : base(category)
  10. {
  11. }
  12. protected override string GetLocalizedString(string value)
  13. {
  14. return SR.GetString(value);
  15. }
  16. }
  17. }