使用资源本地化 DisplayName 属性值
在本地化 .NET 应用程序中,可能需要使用本地化设置模型属性的 DisplayName 属性资源。但是,尝试直接使用 DisplayName 属性中的资源(如下面的代码所示)会导致编译错误:
public class MyModel { [Required] [DisplayName(Resources.Resources.labelForName)] public string name{ get; set; } }
为了解决此限制,MVC 3 和 .NET 4 在System.ComponentModel.DataAnnotations 命名空间。此属性提供增强的功能,包括本地化支持。以下是如何将其用于本地化 DisplayName 值:
public class MyModel { [Required] [Display(Name = "labelForName", ResourceType = typeof(Resources.Resources))] public string name{ get; set; } }
请注意,此方法需要将您的资源文件设置为“嵌入式资源”并使用“ResXFileCodeGenerator”自定义工具。由于自定义工具的限制,请避免将 App_GlobalResources 或 App_LocalResources 与 MVC 一起使用。
以上是如何在 .NET 中本地化 DisplayName 属性值?的详细内容。更多信息请关注PHP中文网其他相关文章!