Tagged Questions
1
vote
0answers
66 views
how can make runtime ListView with binding? wpf
for example I can't get result from this code! please help me, tnx. :)
GridViewColumn gvc6 = new GridViewColumn();
gvc6.DisplayMemberBinding = new Binding("sum");
...
2
votes
1answer
362 views
getvalue from FrameworkElementFactory
Am having a list view with one GridViewColumn
GridViewColumn gvc = new GridViewColumn();
DataTemplate dt = new DataTemplate();
FrameworkElementFactory ch = new ...