Multiple ViewModels in same View
问题 I have several different ViewModels that I would like to display in the same view (MainPage.xaml). I'm new to this and don't know how to do it. I have tried to create a MainViewModel: public class MainViewModel : ViewModelBase, INotifyPropertyChanged { WeatherViewModel weatherView = new WeatherViewModel(); ForecastViewModel forecastViewModel = new ForecastViewModel(); DeparturesViewModel departuresViewModel = new DeparturesViewModel(); CalenderViewModel calenderViewModel = new