如何将命令从ViewModel绑定到DataTemplate不在自己的文件中

时间:2019-09-29 11:57:37

标签: c# xamarin.forms datatemplate

我正在将可绑定的堆栈布局与ItemTemplateSelector一起使用。我的DataTemplates在另一个文件中,该文件包含在MainView中,作为MergedResourceDictionay包含在ResourceDictionary中。在我的一个DataTempplates中,我有一个带有TapGestureRecognizer的标签,该标签应该触发MainViewViewModel中的命令,而且我似乎无法正常工作。...

我尝试在命令绑定中加入Source={x:Reference MainPage},但由于它不在同一文件中而无法引用

  

(Xamarin.Forms.Xaml.XamlParseException:'位置28:51。找不到   MainPage引用的对象')


<--! this is snippet from MainPage  -->
 <ScrollView Orientation="Vertical" Grid.Row="1">
            <local:BindableStackLayout BindableLayout.ItemsSource="{Binding Day.TodayEntry}"
                     x:Name="BindableStack" Spacing="10" Margin="10" 
                           BindableLayout.ItemTemplateSelector="{StaticResource CardDetailTemplateSelector}"/>
        </ScrollView>



<--! this is problematic snippet from data template  -->

<Label Text="REMOVE" FontSize="Medium" TextColor="White" HorizontalOptions="End" Margin="3,0,0,0">
            <Label.GestureRecognizers>
                            <TapGestureRecognizer Command="{Binding RemoveEntryCommand, Source={x:Reference MainPage}}" 
                              CommandParameter="{Binding .}"/>
            </Label.GestureRecognizers>
</Label>

1 个答案:

答案 0 :(得分:0)

不起作用的原因是XAML编译查找是特定于页面的,这意味着如果您有两个不同的页面,并且使用名称进行搜索,则在大多数情况下将不起作用。

在这种情况下,我通常要做的是为BindingContext使用parent关键字!

因此,假设您的Label(位于ViewCell中)的父级为Grid,则可以执行

Command="{Binding Source={x:Reference parentLayoutGrid}, Path=Parent.Parent.BindingContext.RemoveEntryCommand}"

所需的父级属性的数量取决于您的ViewHeirarchy,以及哪个View具有正确的上下文。

祝你好运。

如有查询,随时找回