我在WPF应用程序中使用MVVM模式,并且将具有本地化的DisplayAttribute应用于模型的属性:

class MyModel
{
    [Display(
        ResourceType = typeof(Resources.Strings),
        Name = "MyPropertyName",
        Description = "MyPropertyDescription")]
    public double MyProperty { get; set; }
}

我想显示模型属性的本地化属性。必要的资源文件位于适当的位置,并设置了必要的区域性。我还将Build Action设置为Embedded Resource,并将Custom Tool设置为PublicResXFileCodeGenerator-根据DisplayAttribute的要求。但是DisplayAttribute返回“MyPropertyName”,而不是其Name参数的本地化字符串。

下面介绍了我使用DisplayProperty的方案。为了显示模型属性的属性,我使用了一个带有辅助类的转换器,如下所示:

namespace MyProject.Converters
{
    // helper class
    public class MetadataParameters
    {
        public Type ModelType { get; set; }
        public string ModelProperty { get; set; }
        public Type AttributeType { get; set; }
        public string AttributeProperty { get; set; }
    }

    public class MetadataConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            var mp = parameter as MetadataParameters;
            var modelPropertyInfo = mp.ModelType.GetProperty(mp.ModelProperty);
            var attribute = modelPropertyInfo
                .GetCustomAttributes(true)
                .Cast<Attribute>()
                .FirstOrDefault(memberInfo => memberInfo.GetType() == mp.AttributeType);
            var attributeProperty = attribute.GetType().GetProperty(mp.AttributeProperty);

            return attributeProperty.GetValue(attribute, null);
        }
    }
}

XAML资源:

xmlns:converters="clr-namespace:MyProject.Converters"
<converters:MetadataConverter x:Key="metadataConverter" />

XAML:

xmlns:converters="clr-namespace:MyProject.Converters"
xmlns:DataAnnotations="clr-namespace:System.ComponentModel.DataAnnotations;assembly=System.ComponentModel.DataAnnotations"
xmlns:Models="clr-namespace:MyProject.Models"

<TextBlock
    <TextBlock.Text>
        <Binding
            Mode="OneWay"
            Converter="{StaticResource metadataConverter}">
            <Binding.ConverterParameter>
                <converters:MetadataParameters
                    ModelType="{x:Type Models:Model}"
                    ModelProperty="ModelProperty"
                    AttributeType="{x:Type DataAnnotations:DisplayAttribute}"
                    AttributeProperty="Name" />
            </Binding.ConverterParameter>
        </Binding>
    </TextBlock.Text>
</TextBlock>

我编写了自己的简单属性,它返回了本地化的字符串,而不仅仅是属性名称的值(就像DisplayAttribute一样):

public class LocalizedDisplayAttribute : Attribute
{
    private readonly string name;

    public virtual string Name
    {
        get
        {
            var rm = new System.Resources.ResourceManager(typeof(Resources.Strings));
            return rm.GetString(this.name);
        }
    }

    public LocalizedDisplayAttribute(string name)
        : base()
    {
        this.name = name;
    }
}


class MyModel
{
    [LocalizedDisplay("MyPropertyName")]
    public double MyProperty { get; set; }
}

那么,为什么DisplayAttribute不本地化其属性? MSDN说,此属性是为本地化而设计的。在我的ASP.NET MVC项目中,DisplayAttribute可以正常工作。

最佳答案

DisplayAttribute上有Get方法,您需要调用其他一些方法,这将为您提供所需的本地化字符串。您在这里所做的是获取DisplayAttribute.Name属性的值,即“MyPropertyName”。

如果调用DisplayAttribute.GetName(),它将查找ResourceType属性指定的资源类,然后将使用Name属性在资源类型上反射(reflect)该属性。

我更改了您的代码,并假设将为您请求的AttributeProperty获得GetXXX()方法。

public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
  var mp = parameter as MetadataParameters;
  var modelPropertyInfo = mp.ModelType.GetProperty(mp.ModelProperty);
  var attribute = modelPropertyInfo
      .GetCustomAttributes(true)
      .Cast<Attribute>()
      .FirstOrDefault(memberInfo => memberInfo.GetType() == mp.AttributeType);

  // We have to call the GetXXX methods on the attribute to get a localised result.
  //return ((DisplayAttribute)attribute).GetName();
  var result = attribute
    .GetType()
    .InvokeMember(
      "Get" + mp.AttributeProperty,
      BindingFlags.InvokeMethod | BindingFlags.Instance | BindingFlags.Public,
      null,
      attribute,
      new object[0]);
  return result;
}

10-05 20:59
查看更多