尝试为WPF DependencyObject创建我自己的自定义AttachedProperty实际上无法做我想要它做的事情,我有点担心我(再次)完全不理解WPF概念。
我做了一个非常简单的测试课,以显示我的问题所在。从the MSDN Documentation开始,我复制了
public class TestBox : TextBox
{
public static readonly DependencyProperty IsBubbleSourceProperty = DependencyProperty.RegisterAttached(
"IsBubbleSource",
typeof(Boolean),
typeof(TestBox)
);
public static void SetIsBubbleSource(UIElement element, Boolean value)
{
element.SetValue(IsBubbleSourceProperty, value);
}
public static Boolean GetIsBubbleSource(UIElement element)
{
return (Boolean)element.GetValue(IsBubbleSourceProperty);
}
public Boolean IsBubbleSource
{
get
{
return (Boolean)GetValue(IsBubbleSourceProperty);
}
set
{
SetValue(IsBubbleSourceProperty, value);
}
}
}
现在,将我新的时髦TextBox放入这样的网格中
<Grid vbs:TestBox.IsBubbleSource="true">
<vbs:TestBox x:Name="Test" Text="Test" >
</vbs:TestBox>
</Grid>
我希望每个没有设置IsBubbleSource
属性的孩子都从其父网格“继承”它。它没有这样做; MessageBox.Show(Test.IsBubbleSource.ToString())
显示“false”。附加属性设置为true。我使用OnPropertyChanged事件处理程序检查了这一点。我错过了什么吗?
谢谢!
答案 0 :(得分:2)
默认情况下,不会继承附加属性。您必须在定义属性时指定它:
public static readonly DependencyProperty IsBubbleSourceProperty = DependencyProperty.RegisterAttached(
"IsBubbleSource",
typeof(Boolean),
typeof(TestBox),
new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.Inherits)
);