This question is locked. New answers and comments are not allowed.
Here's what I am trying to achieve.
My view "MainPage.xaml" has its viewmodel "MainPageViewModel.cs" and is divided into two vertical section.
I have a one column radgridview on the left section which displays the "Names" of the players from the "Player" class.
I have another view "PlayersInterest.xaml" which is actually embedded/injected in the right section of the "MainPage.xaml" view.
This view "PlayersInterest.xaml" has few textblocks to display the various interests of the players.
I want to share the viewmodel "MainPageViewModel.cs" of "MainPage.xaml" with the "PlayersInterest.xaml" view and let the "PlayersInterest.xaml" view display the interests of the selected player from the gridview on the left section.
Also, the bindings for the "PlayersInterest.xaml" view has to be a two way, that is I need to modify and save the player's interests too.
Any guidance or pointers on this.
Thanks in advance
HDD
My view "MainPage.xaml" has its viewmodel "MainPageViewModel.cs" and is divided into two vertical section.
I have a one column radgridview on the left section which displays the "Names" of the players from the "Player" class.
I have another view "PlayersInterest.xaml" which is actually embedded/injected in the right section of the "MainPage.xaml" view.
This view "PlayersInterest.xaml" has few textblocks to display the various interests of the players.
I want to share the viewmodel "MainPageViewModel.cs" of "MainPage.xaml" with the "PlayersInterest.xaml" view and let the "PlayersInterest.xaml" view display the interests of the selected player from the gridview on the left section.
Also, the bindings for the "PlayersInterest.xaml" view has to be a two way, that is I need to modify and save the player's interests too.
Any guidance or pointers on this.
Thanks in advance
HDD