I would like to access the data of different ViewModels in a single view.
But the DataContext is a completely different one (MainViewModel in the MainView). Is it possible to set the respective ViewModel for each window control?
Or is it better to create and reference the ObservableCollection<Student> Students
only in the MainViewModel?
At the moment I would like to assign the property Students
from the ViewModel StudentViewModel
to this ComboBox.
MainViewModel (Setting the ApplicationViewModel as CurrentViewModel)
public class MainViewModel : ViewModelBase
{
public MainViewModel()
{
CurrentViewModel = ApplicationViewModel;
ShowStudentViewCommand = new RelayCommand(ShowStudentView);
}
public ViewModelBase CurrentViewModel
{
get => _currentViewModel;
set
{
if (_currentViewModel == value) return;
_currentViewModel = value;
RaisePropertyChanged("CurrentViewModel");
}
}
private ViewModelBase _currentViewModel;
private static readonly ApplicationViewModel ApplicationViewModel = new ApplicationViewModel();
private static readonly StudentViewModel StudentViewModel = new StudentViewModel();
public ICommand ShowStudentViewCommand { get; }
public ICommand ShowApplicationViewCommand { get; }
private void ShowStudentView()
{
CurrentViewModel = StudentViewModel;
}
private void ShowApplicationView()
{
CurrentViewModel = ApplicationViewModel;
}
}
ApplicationViewModel and StudentViewModel (Loading data and creating the ObservableCollection)
public class ApplicationViewModel : ViewModelBase
{
public ApplicationViewModel()
{
}
}
public class StudentViewModel : ViewModelBase
{
private ObservableCollection<Student> _students;
public StudentViewModel()
{
DataStudentService dataService = new DataStudentService();
Students = new ObservableCollection<Student>(dataService.GetAllStudents());
}
public ObservableCollection<Student> Students
{
get => _students;
private set
{
if (_students == value) return;
_students = value;
RaisePropertyChanged("Students");
}
}
}
MainView.xaml (Sets the CurrentViewModel to display)
<Window x:Class="Test.View.MainView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Title="Test" Height="750" Width="700"
DataContext="{Binding Main, Source={StaticResource Locator}}">
<Grid>
<ContentControl Grid.Row="1" Content="{Binding CurrentViewModel}" />
</Grid>
</Window>
ApplicationView.xaml (This is currently displayed)
<UserControl x:Class="Test.View.ApplicationView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:viewModel="clr-namespace:Test.ViewModel"
mc:Ignorable="d">
<Grid >
<ComboBox
TextSearch.TextPath=""
ItemsSource="{Binding Path=Students}"
DisplayMemberPath="Name"
SelectedValuePath="Name"
SelectedValue="{Binding Path=Name, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
SelectedItem="{Binding Path=SelectedStudent, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
SelectedIndex="{Binding Path=SelectedStudentIndex, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
IsSynchronizedWithCurrentItem="True"
IsEditable="True"
Width="200"
Margin="0,0,20,0"
VerticalContentAlignment="Center" />
</Grid>
</UserControl>
Mode=TwoWay
andUpdateSourceTrigger=PropertyChanged
on all your Bindings. While these settings are already the default values for theSelected...
properties, they have no effect at all on theItemsSource
Binding. – ClemensBinding Path=Students
and notBinding Property=Students
. Path means it can be a.b.c – Henk Holterman