| 1234567891011121314151617 |
- // 2012-10-25 add by chenxy
- using System;
- using System.ComponentModel;
- namespace Dongke.WinForm.Controls.InvoiceLayout
- {
- [AttributeUsage(AttributeTargets.All)]
- internal sealed class SRCategoryAttribute : CategoryAttribute
- {
- public SRCategoryAttribute(string category) : base(category)
- {
- }
- protected override string GetLocalizedString(string value)
- {
- return SR.GetString(value);
- }
- }
- }
|