我正在使用一个Extended Toolkit propertyGrid
. 我需要根据用户定义的语言偏好对其进行自定义。从本教程中,我看到可以硬编码更改显示名称和其他功能。
public class Customer
{
public int ID { get; set; }
[ExpandableObject]
[Category("General settings")]<-------hard coded feature change
[DisplayName("Nome persona")]<--------hard coded feature change
public string FirstName { get; set; }
public string LastName { get; set; }
public Gender Gender { get; set; }
public DateTime BirthDate { get; set; }
public string Phone { get; set; }
}
public enum Gender { Male, Female }
}
但我需要在运行时完成!谢谢您的帮助