作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下 XAML:
<dxg:GridControl Name="theGrid" DataSource="{Binding Path=Groupings}">
<dxg:GridControl.ContextMenu>
<ContextMenu>
<MenuItem x:Name="gridprint" Command="{Binding Path=GridPrintCommand}"/>
</ContextMenu>
</dxg:GridControl.ContextMenu>
</dxg:GridControl>
当 GridPrintCommand 执行时,其传递给 GridPrintCommand.Execute(param) 方法的参数为空。我想将参数设置为网格控件。我可以像这样在代码隐藏中做到这一点:
gridprint.CommandParameter = theGrid;
这很好用。但是我试图在 XAML 中设置相同的东西 (CommandParameter),但我就是做不对!我输入的所有内容都会导致 BindingExpressionError 或 null 参数。我错过了什么?
最佳答案
尝试使用这个:
<MenuItem x:Name="gridprint"
CommandParameter="{Binding PlacementTarget, RelativeSource=
{RelativeSource FindAncestor, AncestorType={x:Type ContextMenu}}}" />
ContextMenus 不是 WPF 的普通 VisualTree 的一部分,因此您必须使用 PlacementTarget 进行绑定(bind)以获取 ContextMenu 附加到的对象
关于.net - 如何在 XAML 中设置 CommandParameter?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5235809/
我是一名优秀的程序员,十分优秀!