DataGrid Dynamic Data
WPF
1
Posts
1
Posters
0
Views
1
Watching
-
Hello, I have an object with 3 properties- Field, Value, Operator. Also i have a list of this objects. In my DataGrid i have an operator column which is static. All other columns are added dynamically using dependency properties (adding column from the object - using Field Attribute). The same object contains the value so the value will be presented in the cell under the right column (Field) . All objects that have the same operator will be presented in one row in the DataGrid. How can i do it? How do i use Dependency properties for this (if i need)?