Hello,
In my application, i have 10 properties for a class (Class: Employee). I have a ObservableCollection<Employee> which i am binding to a DataGrid.
I want to display only 5 properties from this class in the DataGrid but the solution should be a generic solution. I mean, in future if other class needs to be binded to DataGrid then the code should not be changed.
Can i use custom attributes to get list of available properties which needs to be displayed or is there any other better way? If yes how can i use this in by application where i just have to pass the class and it will return the properties which i can display in DataGrid?
Thanks in adavance.
Regards,
IamHuM