我有一个 Xamarin.Forms 应用程序,它使用 FreshMvvm。我有两个选择器控件用于选择国家和州/省。最初填充国家选择器,但应根据所选国家动态填充州/省列表。我找不到如何使用命令而不是代码隐藏事件处理来完成它。这是我在MyPage.xaml中的控件:
<Picker Title="Choose Country..."
ItemsSource="{Binding Countries}"
ItemDisplayBinding="{Binding Value}"
SelectedItem="{Binding SelectedCountry}"
Margin="0, 0, 0, 5" />
<Picker Title="Choose State..."
ItemsSource="{Binding States}"
ItemDisplayBinding="{Binding Value}"
SelectedItem="{Binding SelectedState}"
Margin="0, 0, 0, 5" />
我应该在MyPageModel.cs中放什么?