如何使UIElement支持绑定?

时间:2011-05-20 11:11:37

标签: wpf data-binding datacontext uielement

UIElement上的DependencyProperties不支持数据绑定(你得到类似的东西:

  

“找不到治理方法   FrameworkElement的..“)

。如果您尝试,则会收到错误,因为WPF无法解析DataContext。据我所知,如果继承FrameworkElement或Freezable,你将获得绑定支持,但在这种情况下,我不能简单地更改基类。有没有办法让UIElement支持数据绑定?

我试图将DataContext属性添加到UIElement类中,如下所示:

  FrameworkElement.DataContextProperty.AddOwner(typeof(Bitmap), new 
    FrameworkPropertyMetadata(null, FrameworkPropertyMetadataOptions.Inherits));

我还尝试通过在绑定表达式中指定“ElementName”来绑定,但我仍然无法解析父DataContext(我认为ElementName显式绑定只会消除解析DataContext的需要)。

这是绑定。有问题的类称为“位图”。

<Utils:Bitmap Source="{Binding Path=Icon}" />
<TextBlock Grid.Row="1" Grid.ColumnSpan="3" MaxWidth="90" Text="{Binding Path=Name}" TextWrapping="Wrap" TextAlignment="Center"/>

textblock绑定按预期工作,第一个绑定没有。绑定的viewmodel具有两个属性(我之前绑定到Image类并且它工作)。

可以在此博客上找到位图类:http://blogs.msdn.com/b/dwayneneed/archive/2007/10/05/blurry-bitmaps.aspx

通过一些扩展的绑定诊断,我得到了这个输出:

System.Windows.Data Warning: 65 : BindingExpression (hash=14926099): Framework mentor not found
System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=Icon; DataItem=null; target element is 'Bitmap' (HashCode=117163); target property is 'Source' (type 'BitmapSource')
System.Windows.Data Warning: 63 : BindingExpression (hash=6195855): Resolving source  (last chance)
System.Windows.Data Warning: 65 : BindingExpression (hash=6195855): Framework mentor not found
System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=Icon; DataItem=null; target element is 'Bitmap' (HashCode=55762700); target property is 'Source' (type 'BitmapSource')
System.Windows.Data Warning: 63 : BindingExpression (hash=48657561): Resolving source  (last chance)
System.Windows.Data Warning: 65 : BindingExpression (hash=48657561): Framework mentor not found
System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=Icon; DataItem=null; target element is 'Bitmap' (HashCode=35264868); target property is 'Source' (type 'BitmapSource')

3 个答案:

答案 0 :(得分:7)

您必须继承FrameworkElement才能使用数据绑定。如果你不能改变基类,你唯一的选择就是H.B.表示,创建一个将从FrameworkElement派生的适配器,并将所有功能委托给从UIElement派生的现有类的实例。

有关基本框架类(如UIElementFrameworkElement)提供的内容的详细信息,请参阅http://msdn.microsoft.com/en-us/library/ms743618.aspx

<强>更新

即使MSDN(上面的链接)说在FrameworkElement级别引入了数据绑定支持,也可以在任何DependencyObject上设置绑定。唯一的问题是,在这种情况下,您不能使用DataContext作为绑定的隐式源,也不能使用ElementName来引用源。

您可以做的是以编程方式设置绑定并明确指定源:

BindingOperations.SetBinding(MyBitmap, Bitmap.IconProperty, new Binding() { Source = this.DataContext /* Or any other source */, Path = new PropertyPath("Icon")});

或者您可以使用一个小技巧并使用RelativeSource来引用可视化树中的元素(在本例中为任何父FrameworkElement):

<Utils:Bitmap Source="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type FrameworkElement}}, Path=DataContext.Icon}" />

答案 1 :(得分:4)

您可以使用{Binding Source={x:Reference elementName}}代替{Binding ElementName=elementName}

答案 2 :(得分:1)

如上所述,你可以绑定任何继承自DependencyObject的对象,如果你想要一个DataContext,我建议你让这个类继承自FrameworkElement。甚至像Rectangle这样的形状都会这样做,如果你有一些图像控制,那么选择一个更高级别作为基类是有意义的。