我正在使用ViewModel.AutoWireViewmodel。因此,选项卡式视图已绑定到视图模型。我不知道如何将我各自的页面绑定到它们各自的视图模型
如果您已将TabbedPage
绑定到 ViewModel,则可以对其他页面执行相同的操作。每个页面还有一个BindingContext
,因此请将每个页面BindingContext
设置为每个页面所需的视图模型。
我的页面1.cs构造函数:
public MyPage1()
{
InitializeComponent();
BindingContext = new MyPage1ViewModel();
}