I got an DataGrid in MVVM which´s ItemsSource is bound to a Custom Model.
The properties in this model are named like their equivalent in the database.
For example this:
public string StapelStatus_Txt
{
get
{
return this.stapelstatusTxt;
}
set
{
this.stapelstatusTxt = value;
this.OnPropertyChanged("StapelStatus_Txt");
}
}
Is it somehow possible (without renaming the propertie) to declare another displayname for the datagrid? I thought the data anotation “DisplayName” would help… but it don´t.
Someone got an idea?:)
Kind regards
You can, for example, use DisplayNameAttribute on property and set column header like this: