私はApp.xamlで私MainViewModelクラスを宣言形成する場合、私は負荷にこのエラーを取得する:シェアXamarinのページ間の単一のViewModelのインスタンスが
Xamarin.Forms.Xaml.XamlParseException:位置7:6。プロパティ「リソース」を割り当てることができません:型の不一致「をMyPCL.Client.ViewModels.MainViewModel」と「Xamarin.Forms.ResourceDictionary」私はこれを行うことができ、すべてのページのように、私は世界のViewModelに宣言することができますどのように
<Application.Resources>
<viewModels:MainViewModel x:Key="MainViewModel"/>
</Application.Resources>
間:
あなたがApplication.Resources
タグ内
ResourceDictionary
を宣言する必要が
BindingContext="{StaticResource MainViewModel}"
私の一部にherp derp。ありがとう! – shady