4

我正在尝试从 Button 的 ContentTemplate 绑定到附加属性。我阅读了类似于“绑定到附加属性”的问题的所有答案,但我没有运气解决问题。

请注意,此处提供的示例是我的问题的简化版本,以避免将问题与业务代码混淆。

所以,我确实有带有附加属性的静态类:

using System.Windows;

namespace AttachedPropertyTest
{
  public static class Extender
  {
    public static readonly DependencyProperty AttachedTextProperty = 
      DependencyProperty.RegisterAttached(
        "AttachedText",
        typeof(string),
        typeof(DependencyObject),
        new PropertyMetadata(string.Empty));

    public static void SetAttachedText(DependencyObject obj, string value)
    {
      obj.SetValue(AttachedTextProperty, value);
    }

    public static string GetAttachedText(DependencyObject obj)
    {
      return (string)obj.GetValue(AttachedTextProperty);
    }

  }
}

和一个窗口:

<Window x:Class="AttachedPropertyTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:AttachedPropertyTest"
        Title="MainWindow" Height="350" Width="525">
  <Grid>
    <Button local:Extender.AttachedText="Attached">
      <TextBlock 
        Text="{Binding 
          RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Button},
          Path=(local:Extender.AttachedText)}"/>
    </Button>
  </Grid>
</Window>

差不多就是这样。我希望在按钮中间看不到“附加”。相反,它会崩溃:属性路径无效。“扩展器”没有名为“附加文本”的公共属性。

我在 SetAttachedText 和 GetAttachedText 上设置了断点,并执行了 SetAttachedText,因此将其附加到按钮上是可行的。但 GetAttachedText 从未执行过,因此解析时找不到属性。

我的问题实际上更复杂(我试图从 App.xaml 中的 Style 内部进行绑定),但让我们从简单的问题开始。

我错过了什么?谢谢,

4

1 回答 1

7

你的附属物登记有误。ownerType是,Extender不是DependencyObject

public static readonly DependencyProperty AttachedTextProperty = 
    DependencyProperty.RegisterAttached(
        "AttachedText",
        typeof(string),
        typeof(Extender), // here
        new PropertyMetadata(string.Empty));

请参阅RegisterAttached的 MSDN 文档:

ownerType - 注册依赖属性的所有者类型

于 2013-11-04T14:01:20.807 回答