使用資源本地化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中文網其他相關文章!