如何使MVC3 DisplayFor显示Enum的显示属性的值?

时间:2011-06-05 18:54:06

标签: asp.net-mvc-3 attributes enums

在MVC3-Project中,我正在使用带有display-Attributes的枚举:

public enum Foo {
  [Display(Name = "Undefined")]
  Undef = 0,

  [Display(Name = "Fully colored")]
  Full = 1
}

模型类有一个使用此枚举的属性:

public Foo FooProp { get; set; }

视图使用模型类并通过

显示属性
@Html.DisplayFor(m => m.FooProp)

现在,最后,我的问题:

如何使.DisplayFor()显示Display-Attribute中的字符串,而不是仅显示枚举的value-name? (它应显示“未定义”或“全彩色”,但显示为“Undef”或“Full”)。

感谢您的提示!

1 个答案:

答案 0 :(得分:25)

自定义显示模板可能会有所帮助(~/Views/Shared/DisplayTemplates/Foo.cshtml):

@using System.ComponentModel.DataAnnotations
@model Foo

@{
    var field = Model.GetType().GetField(Model.ToString());
    if (field != null)
    {
        var display = ((DisplayAttribute[])field.GetCustomAttributes(typeof(DisplayAttribute), false)).FirstOrDefault();
        if (display != null)
        {
            @display.Name
        }
    }
}