我在创建“Binding”类型的DependencyProperty时遇到问题。其他类型工作正常,如果我使用绑定填充它们,它们会成功解析。
在我的场景中,我想获取原始绑定,以便我可以使用它绑定到子对象的属性,就像DataGrid做列的方式一样 - 即对于列中指定的每个绑定,它绑定到ItemsSource集合中的每个项目,而不是绑定DataContext本身。
<mg:MultiSelectDataGrid x:Name="Grid" DockPanel.Dock="Left"
ItemsSource="{Binding Path=Rows}" DataContext="{Binding}"
AutoGenerateColumns="False" UriBinding="{Binding Path=UrlItems}">
在我的“MultiSelectDataGrid”中:
public static readonly DependencyProperty UriBindingProperty =
DependencyProperty.Register("UriBinding", typeof(BindingBase),
typeof(MultiSelectDataGrid),
new PropertyMetadata { PropertyChangedCallback = OnBindingChanged});
private static void OnBindingChanged(DependencyObject d,
DependencyPropertyChangedEventArgs e)
{
// This is never enterred
}
public BindingBase UriBinding
{
get { return (BindingBase)GetValue(UriBindingProperty); }
set { SetValue(UriBindingProperty, value); }
}
永远不会调用回调,并且永远不会设置属性。我已经尝试过各种各样的排列,没有回调。唯一让我取得成功的是如果我用字符串替换绑定(例如UriBinding =“hello”) - 在这种情况下它会触发回调,并设置属性,但当然会失败,因为它是错误的类型。
我做错了什么?我已经看到了一大堆这样的例子,我想这就是DataGrid必须做的事情。
由于
答案 0 :(得分:8)
奇怪的是,只有我知道其他Binding
类型属性的地方是DataGridBoundColumn
类,它派生为DataGridTextColumn
,DataGridCheckBoxColumn
等...
有趣的是,该属性不是依赖属性。它是一个普通的CLR类型属性。我想绑定的基础结构是基于你无法绑定到绑定类型DP的限制。
同一类的其他属性非常好,如可见性,标题等。
在DataGridBoundColumn
中,Binding
属性声明如下,并对此进行了非常粗略的解释......
这不是DP,因为如果它正在获得该值将评估 绑定。
/// <summary>
/// The binding that will be applied to the generated element.
/// </summary>
/// <remarks>
/// This isn't a DP because if it were getting the value would evaluate the binding.
/// </remarks>
public virtual BindingBase Binding
{
get
{
if (!_bindingEnsured)
{
if (!IsReadOnly)
{
DataGridHelper.EnsureTwoWayIfNotOneWay(_binding);
}
_bindingEnsured = true;
}
return _binding;
}
set
{
if (_binding != value)
{
BindingBase oldBinding = _binding;
_binding = value;
CoerceValue(IsReadOnlyProperty);
CoerceValue(SortMemberPathProperty);
_bindingEnsured = false;
OnBindingChanged(oldBinding, _binding);
}
}
}
答案 1 :(得分:3)
虽然@ WPF-it解决方案有效,但它不适用于附加属性,因为您无法附加CLR属性。要解决此问题,您可以照常定义附加属性,并通过调用BindingOperations.GetBindingBase()
来获取绑定对象。
private static void OnMyPropChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
// Can also use GetBinding(), GetBindingExpression()
// GetBindingExpressionBase() as needed.
var binding = BindingOperations.GetBindingBase(d, e.Property);
}