英文:
How to add visibility binding for MenuItem of ContextActions of a ListView
问题
我尝试在选择任何ListView项时显示上下文操作菜单项,我已添加了三个菜单项。但我需要绑定这些菜单项的可见性。根据选择,特定的菜单项应该可见。是否有一种方法可以为ListView中的contextActions菜单项添加绑定?
英文:
I am trying display context actions menu items while selecting any listview item, there I have added three menu items. But I need to bind the visibility for those Menu Items. Depending on selection the specific menuitem should be visible. Is there any way to add binding for the contextActions menuitems in a listview?
答案1
得分: 2
由于ContextAction
是一个MenuItem
,所以这是不可能的。MenuItem
不会暴露任何(可绑定的)IsVisible
属性或类似属性。
一个不太正规的解决方法可以是在确定需要显示或隐藏的情况下添加/移除上下文操作。或者使用可用的IsEnabled
属性。
英文:
Since a ContextAction
is a MenuItem
this is not possible. The MenuItem
does not expose any (bindable) IsVisible
property or alike.
A hacky workaround could be to add/remove context actions whenever you determine what needs to be shown or hidden. Or use the IsEnabled
property that is available.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论