Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 MVVM。我的 MainView 中有一个 tabcontrol 和多个按钮。当我单击某个按钮时,它将在 tabitem 中加载子视图。这个子视图也有tabcontrol。现在,当我单击其他按钮时,子子视图应作为 tabitem 加载到子视图选项卡控件中。
设置这样的导航的最佳做法是什么?
我不想使用 EventAggregator。还有另一种方法可以做到这一点吗?
那么如何在子视图中执行命令以从主视图或主窗口将子选项卡控件中的子子视图加载为 tabitem?
您始终可以使用复合命令。 使按钮命令复合,并让子视图注册到这些命令
顺便说一句,是否有不想使用 EventAggregator 的特定原因?