As we can add expression in Data Column of Data Table, is it possible to create Column like DataGridTextColumn and set Binding Expression?
If Yes then How?
As I am creating My Own DataGridComputedColumn For WPF DataGrid, which allows to set expression for that column so that at run time when DataSource is attached it automatically evaluates this Computed Column at run time.
For Example I have table EMP With 2 Columns FirstName and LastName. This will be DataGridTextColumn in WPF DataGrid. Now the third column will be My own Custom DataGridComputedColumn Which has property like expression in which i can set expression as FirstName +' ' + LastName which on run time evaluates and generate third column.
Thanks Visshal