I am learning WPF and MVVM and I am trying to make a program which has a DataGrid and a button which opens another form by using a command from where you can add an item to the DataGrid.
The problem is that I am not sure how I should implement this with the viewmodels. I have 1 viewmodel which is for my DataGrid form which works correctly and is using a repository to retrieve data from Entity Framework.
Is it possible to add an object from the Add Form and have it appear in the DataGrid in the other form automatically when I press the add button or do I need to do some refresh action on the DataGrid? I am using observable collections in my viewmodel and I have implemented the OnPropertyChange functionality in the collection parameter in the view model.
As far as I can understand when I put something in a repository, every view model which gets data from it should be refreshed... though I am not sure if I should write some message code for that to work.
I am pretty confused about this and I hope that someone can shed some light here... Thanks in advance. Tell me if I have missed to mention something and I will add it:)
Edit: This is how I register my models:
SimpleIoc.Default.Register<ParentsListViewModel>();
SimpleIoc.Default.Register<EditParentViewModel>();
And this is how I register my repository:
SimpleIoc.Default.Register<IParentsRepository, ParentsRepository>();
And this is how I retrieve the instances of the ViewModels:
ParentsListViewModel parentsListViewModelInstance = ServiceLocator.Current.GetInstance<ParentsListViewModel>();
EditParentViewModel editParentViewModelInstance = ServiceLocator.Current.GetInstance<EditParentViewModel>();
The ParentsListViewModel is my DataGrid ViewModel and the EditParentViewModel is the one is use for adding/editing records in the repository. The service locator passes the instances of the repositories automaticaly so I have no idea how it passes the instance of the repository to the ViewModels. Does it pass the same instance?