.net – 为什么在使用带有AutoGenerateColumns =“True”的DataGrid时会忽略DataAnnotations

前端之家收集整理的这篇文章主要介绍了.net – 为什么在使用带有AutoGenerateColumns =“True”的DataGrid时会忽略DataAnnotations前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 WPF DataGrid绑定到自定义类的集合.在网格XAML中使用AutoGenerateColumns =“True”,网格被创建并填充得很好,但标题属性名称,正如人们所期望的那样.

我试过指定

<Display(Name:="My Name")>

从System.ComponentModel.DataAnnotations命名空间,它没有任何效果.我也试过了

<DisplayName("My Name")>

从System.ComponentModel名称空间,但标题仍然不受影响.

是否无法使用AutoGenerateColumns选项指定列标题

解决方法

使用@ Marc的建议是解决方案的开始,但是它自己采用,AutoGenerated列仍然将属性名称作为标题.

获取DisplayName,您需要添加一个例程(在后面的代码中)来处理GridAutoGeneratingColumn事件:

Private Sub OnGeneratingColumn(sender As Object,e As System.Windows.Controls.DataGridAutoGeneratingColumnEventArgs) Handles Grid.AutoGeneratingColumn
    Dim pd As System.ComponentModel.PropertyDescriptor = e.PropertyDescriptor
    e.Column.Header = pd.DisplayName
End Sub

另一个更好的解决方案是使用ComponentModel.DataAnnotations命名空间并指定ShortName:

Public Class modelQ016
    <Display(shortname:="DB Name")>
    Public Property DBNAME As String
    ...

OnGeneratingColumn成为:

Dim pd As System.ComponentModel.PropertyDescriptor = e.PropertyDescriptor
        Dim DisplayAttrib As System.ComponentModel.DataAnnotations.DisplayAttribute =
            pd.Attributes(GetType(ComponentModel.DataAnnotations.DisplayAttribute))
        If Not DisplayAttrib Is Nothing Then
            e.Column.Header = DisplayAttrib.ShortName
        End If

请注意,属性数组中属性的顺序会发生变化,因此您必须使用GetType(…)而不是数字参数……这样的乐趣!

原文链接:https://www.f2er.com/java/121340.html

猜你在找的Java相关文章