Bu partiye geç kaldığımı biliyorum, ancak bu varyantı yararlı bulabileceğinizi düşündüm, çünkü bu da açılır listede numaralandırma sabitleri yerine açıklayıcı dizeler kullanmanıza izin verir. Bunu yapmak için, her numaralandırma girdisini bir [System.ComponentModel.Description] özniteliğiyle süsleyin.
Örneğin:
public enum TestEnum
{
[Description("Full test")]
FullTest,
[Description("Incomplete or partial test")]
PartialTest,
[Description("No test performed")]
None
}
İşte benim kod:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Mvc;
using System.Web.Mvc.Html;
using System.Reflection;
using System.ComponentModel;
using System.Linq.Expressions;
...
private static Type GetNonNullableModelType(ModelMetadata modelMetadata)
{
Type realModelType = modelMetadata.ModelType;
Type underlyingType = Nullable.GetUnderlyingType(realModelType);
if (underlyingType != null)
{
realModelType = underlyingType;
}
return realModelType;
}
private static readonly SelectListItem[] SingleEmptyItem = new[] { new SelectListItem { Text = "", Value = "" } };
public static string GetEnumDescription<TEnum>(TEnum value)
{
FieldInfo fi = value.GetType().GetField(value.ToString());
DescriptionAttribute[] attributes = (DescriptionAttribute[])fi.GetCustomAttributes(typeof(DescriptionAttribute), false);
if ((attributes != null) && (attributes.Length > 0))
return attributes[0].Description;
else
return value.ToString();
}
public static MvcHtmlString EnumDropDownListFor<TModel, TEnum>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TEnum>> expression)
{
return EnumDropDownListFor(htmlHelper, expression, null);
}
public static MvcHtmlString EnumDropDownListFor<TModel, TEnum>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TEnum>> expression, object htmlAttributes)
{
ModelMetadata metadata = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData);
Type enumType = GetNonNullableModelType(metadata);
IEnumerable<TEnum> values = Enum.GetValues(enumType).Cast<TEnum>();
IEnumerable<SelectListItem> items = from value in values
select new SelectListItem
{
Text = GetEnumDescription(value),
Value = value.ToString(),
Selected = value.Equals(metadata.Model)
};
// If the enum is nullable, add an 'empty' item to the collection
if (metadata.IsNullableValueType)
items = SingleEmptyItem.Concat(items);
return htmlHelper.DropDownListFor(expression, items, htmlAttributes);
}
Daha sonra bunu görünümünüzde yapabilirsiniz:
@Html.EnumDropDownListFor(model => model.MyEnumProperty)
Umarım bu size yardımcı olur!
** EDIT 2014-JAN-23: Microsoft, şimdi bir EnumDropDownListFor özelliği olan MVC 5.1'i piyasaya sürdü. Ne yazık ki yukarıdaki kod hala duruyor böylece [Açıklama] özniteliğine saygı gibi görünmüyor . Microsoft'un MVC 5.1 sürüm notlarındaki Enum bölümüne bakın .
Güncelleme: Display özniteliğini destekliyor [Display(Name = "Sample")]
, böylece bunu kullanabilirsiniz.
[Güncelleme - bunu fark etti ve kod burada kodun genişletilmiş bir sürümüne benziyor: https://blogs.msdn.microsoft.com/stuartleeks/2010/05/21/asp-net-mvc-creating-a- birkaç eklenti ile açılır liste-yardımcıları için yardımcı / . Eğer öyleyse, atıf adil görünecektir ;-)]