如何通过xamarin表单中的代码关闭上下文操作

时间:2015-12-03 04:39:52

标签: c# android contextmenu xamarin-forms

我已经在xamarin表单中创建了一个应用程序,我在列表视图项模板的ViewCell中使用了Context Actions:

          <ViewCell.ContextActions>
            <MenuItem Clicked="OnEdit"
              Text="Edit"/>
            <MenuItem Clicked="OnDelete"
               Text="Delete" IsDestructive="True" />
          </ViewCell.ContextActions>

虽然我长按列表视图中的任何项目,但我在操作栏中获取了上下文操作项,如果我没有点击上下文操作中的任何选项,它将不会在android中关闭。有什么方法可以通过xamarin表单中的代码关闭该上下文操作栏吗?

0 个答案:

没有答案