我有一組ViewModel
,每個都代表一個功能,每個ViewModel都與一個View關聯。我有一個MainWindow
,我應該在其中創建視圖並顯示與之關聯的視圖模型。 o如何做到這一點?將視圖分配給MVVM中的ContentControl
MainWindow.xaml
<FlowLayoutControl>
<ContentControl Name="MainScreen">
</ContentControl>
</FlowLayoutControl>
我有一個vieModel的Test1和Test2的每一個都有自己的DataTemplate。現在,我想在需要時將ContentControl
設置爲其中一個視圖模型。我該怎麼做呢?
你有沒有與這些特徵的ViewModels在主窗口中他們的屬性創建單獨的視圖模型? – CarbineCoder