How to use declarative harachy building when any harrachy level can be updated in ****** wpf grid.
Printable View
How to use declarative harachy building when any harrachy level can be updated in ****** wpf grid.
I tried this code with my ****** gridcontrol and this event driven data model works equally well or without any harrachies.
C#
Row rowCategory = grid.Rows.Add(new string[] { "Some category" });
rowCategory.Expanded = true;
Product product1 = new Product("Product 1");
Product product2 = new Product("Product 2");
...
BindingList<Order> orders = new BindingList<Order>();
orders.Add(new Order(product1, 123.32, 15));
orders.Add(new Order(product2, 110.11, 54));
...
rowCategory.ItemsSource = orders;
Hello,
You have made a number of similar posts that seem to be (thinly) disguised ads for your product. Forum rules allow you to make one product announcement in the Announcements forum, but please stop posting this sort of thing elsewhere.
Thanks!
[Thread Closed]