没问题
我创建了一个接受字符串值的依赖属性。我将它设置为 aTextBlock
并且它可以工作:
<TextBlock dp:ElementDataContext.ElementName="LvMain">
我验证了该属性ElementDataContext.ElementName
设置为“LvMain”。
问题
现在问题来了:在TextBlock
的上下文菜单中,我想通过PlacementTarget
.
这是我尝试做的方法。这是我的 XAML 的摘录,其中包含TextBlock
and ContextMenu
:
<TextBlock dp:ElementDataContext.ElementName="LvMain">
<TextBlock.ContextMenu>
<ContextMenu Tag="{Binding PlacementTarget.(dp:ElementDataContext.ElementName), RelativeSource={RelativeSource Self}}">
这在运行时失败。打开上下文菜单时,它给了我一个“BindingExpression 路径错误”:
BindingExpression path error: '(dp:ElementDataContext.ElementName)' property not found on 'object' ''TextBlock' (Name='')'. BindingExpression:Path=PlacementTarget.(dp:ElementDataContext.ElementName); DataItem='ContextMenu' (Name='contextMenu'); target element is 'ContextMenu' (Name='contextMenu'); target property is 'Tag' (type 'Object')
我怀疑我的绑定路径是错误的。我试过了
PlacementTarget.(dp:ElementDataContext.ElementName)
PlacementTarget.dp:ElementDataContext.ElementName
PlacementTarget.ElementDataContext.ElementName
没有任何效果。什么是正确的语法?这甚至可能吗?