1

没问题

我创建了一个接受字符串值的依赖属性。我将它设置为 aTextBlock并且它可以工作:

<TextBlock dp:ElementDataContext.ElementName="LvMain">

我验证了该属性ElementDataContext.ElementName设置为“LvMain”。

问题

现在问题来了:在TextBlock的上下文菜单中,我想通过PlacementTarget.

这是我尝试做的方法。这是我的 XAML 的摘录,其中包含TextBlockand 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

没有任何效果。什么是正确的语法?这甚至可能吗?

4

1 回答 1

2

属性路径语法PlacementTarget.(dp:ElementDataContext.ElementName)是正确的,但您还必须Path=...在属性表达式中显式编写部分:

<ContextMenu Tag="{Binding Path=PlacementTarget.(dp:ElementDataContext.ElementName),
                           RelativeSource={RelativeSource Self}}">

但是,绑定标记扩展中的隐式路径部分并未提及此行为。

于 2012-12-28T13:56:50.323 回答