繁体   English   中英

Xamarin.Forms - 绑定到 ContextMenu

[英]Xamarin.Forms - Binding on ContextMenu

我有一个以歌曲为项目的列表。 长按元素应显示上下文菜单。

AllSongsViewModel.xaml:

<DataTemplate x:Key="SongTemplate">
    <ViewCell>
        <ViewCell.ContextActions>
            <MenuItem Text="Edit" />
            <MenuItem Text="Delete"/>
        </ViewCell.ContextActions>

        <StackLayout Padding="15,5" VerticalOptions="Center">

            <Label Text="{Binding Title}"
                   FontSize="16"/>
            <Label Text="{Binding Performer}"
                   FontSize="12"/>
        </StackLayout>
    </ViewCell>
</DataTemplate>

这很好用,但我现在需要绑定,以便根据布尔 IsAdmin 打开上下文菜单,它位于 AllSongsViewModel

AllSongsViewModel.cs:

public bool IsAdmin => _authService.LoggedUser.Role == "Admin";

但我不知道如何将此属性绑定到上下文菜单

不幸的是,您不能在 ViewModel 上执行此操作。 但是您可以在 View Cell 上设置一个 BindingContextChange 事件并在此处进行更改,如下所示:

XAML:

<DataTemplate x:Key="SongTemplate">
 <ViewCell BindingContextChanged="OnBindingContextChanged">
    <StackLayout Padding="15,5" VerticalOptions="Center">

        <Label Text="{Binding Title}"
               FontSize="16"/>
        <Label Text="{Binding Performer}"
               FontSize="12"/>
    </StackLayout>
</ViewCell>

在您后面的代码中:

 private void OnBindingContextChanged(object sender, EventArgs e)
    {
        base.OnBindingContextChanged();

        if (BindingContext == null)
            return;

        ViewCell theViewCell = ((ViewCell)sender);
        var viewModel = this.BindingContext.DataContext as AllSongsViewModel;
        theViewCell.ContextActions.Clear();

        if (viewModel.IsAdmin)
        {
            theViewCell.ContextActions.Add(new MenuItem()
            {
                Text = "Delete",
            });

            theViewCell.ContextActions.Add(new MenuItem()
            {
                Text = "Edit",
            });
        }
    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM