Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个 menuItems 绑定到相同的命令“显示图片”和“隐藏图片”,我希望任何时候只有一个项目显示或显示或隐藏。
除了参数之外,Execute 的语法相同。
是否有可能我只能同时显示一个,如果我按下该项目,它会切换到另一个?
谢谢你
您可以使用 ElementName 将 Visibility 绑定到其他控件的可见性。然后使用转换器来翻转可见性。
Visibility="{Binding ElementName=otherControl,Path=Visibility,Converter={StaticResource HiddenToVisibleConverter}}"