Link to home
Start Free TrialLog in
Avatar of mcs26
mcs26

asked on

C# WPF Datagrid Filter List

Hi,

I have a WPF application that contains two datagrids. I have a object of type OrderBlocks which contains one list of type Orders, please see below.

class OrderBlocks
{
   public string setting;
   public List<Order> Orders;
}

class Order
{
  public double Amount;
  public int Name;
  public bool Status;
} 

Open in new window


What I would like is both of my datagrids to be bound to my list Orders. However I want one datagrid to show all orders in my list where the Status is true and the other grid to show all the orders where the status is false.

Also what I would like is if the user changes the status in one of the datagrids that the Order then moves to the other datagrid.

The link here
Example Solution shows a solution where ListCollectionView is subclassed. This sounds like a good example for me to follow, however I do not know how to go about this.

Just to mention that my list when bound to the datagrids will not add any new Orders and also the no Orders can be deleted.

Any help would be great.
Thanks,
M
ASKER CERTIFIED SOLUTION
Avatar of Gautham Janardhan
Gautham Janardhan

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial