我有一个页面(Xamarin XAML):
<ContentPage x:Name="MyPage">
页面通过资源引用外部xaml
<ResourceDictionary Source="SomeTemplate.xaml"></ResourceDictionary>
一切都很好,但是在外部xaml中,我试图引用** MyPage **命令,但找不到** MyPage **-编译器抛出错误。
<SomeControl TappedCommand="{Binding Source={x:Reference MyPage}, Path=BindingContext.SomeCommand}">