我在尝试在对象中使用依赖项属性时遇到问题,这些对象是集合的一部分,在acustom控件中,使用“ContentProperty”属性标识的集合。好的,那还不太清楚。以下是我的自定义控件示例:
这是我的自定义控件基本定义:
[ContentProperty("SmarSearchScopes ")]
public class SmartSearchCc : Control
{
List<SmartSearchScope> SmarSearchScopes {get;set;}
(more code here)
}
以下是SmartSearchScope对象的基本定义:
public class SmartSearchScope : DependencyObject
{
public static readonly DependencyProperty ViewProperty =DependencyProperty.Register("View", typeof (ICollectionView), typeof (SmartSearchScope),new UIPropertyMetadata(null,OnViewChanged));
public static readonly DependencyProperty FilterColumnsProperty =DependencyProperty.Register("FilterColumns", typeof (IEnumerable<ColumnBase>), typeof (SmartSearchScope),new UIPropertyMetadata(null, OnFilterColumnsChanged));
public ICollectionView View
{
get { return (ICollectionView) GetValue(ViewProperty); }
set { SetValue(ViewProperty, value); }
}
public IEnumerable<ColumnBase> FilterColumns
{
get { return (IEnumerable<ColumnBase>) GetValue(FilterColumnsProperty); }
set { SetValue(FilterColumnsProperty, value); }
}
(more code here)
}
那是为了什么?能够通过XAML传递一组SmartSearchScope对象:
<SmartSearch:SmartSearchCc HorizontalAlignment="Stretch" Grid.Row="0" >
<SmartSearch:SmartSearchScope FilterColumns="{Binding ElementName=CcyPairsConfigBlotter, Path=Columns}" View ="{Binding ElementName=CcyPairsConfigBlotter, Path=ItemsSource}"/>
<SmartSearch:SmartSearchScope FilterColumns="{Binding ElementName=ClientConfigBlotter, Path=Columns}" View ="{Binding ElementName=ClientConfigBlotter, Path=ItemsSource}"/>
</SmartSearch:SmartSearchCc>
'ClientConfigBlotter'和'CcyPairsConfigBlotter'只是两个ItemsControls,它们公开了'Columns'和'ItemSource'd-property。
这里的问题是,虽然我的2个SmartSearchScope对象被实例化,但是没有对“View”和“FilterColumns”d属性进行数据绑定,而且我从未通过相关的回调。
此外,这是我在创建自定义控件时收到的输出错误消息。
System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=Columns; DataItem=null; target element is 'SmartSearchScope' (HashCode=56862858); target property is 'FilterColumns' (type 'IEnumerable`1')
System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=ItemsSource; DataItem=null; target element is 'SmartSearchScope' (HashCode=56862858); target property is 'View' (type 'ICollectionView')
很明显,我错过了一些东西,但我找不到。
我必须说,在该控件的先前版本中,这两个有问题的d属性,其中SmartSearchCc属性和所有工作都很好。
感谢您的帮助:)
- 布鲁诺
答案 0 :(得分:1)
我在这里遇到了类似的问题:Bindings on child dependency object of usercontrol not working
绑定不起作用的原因是因为DependencyObjects没有DataContext属性。在我的情况下,我将它们更改为继承自FrameworkElement,解决了这个问题。
虽然正如其他人提到的那样,将父控件更改为ItemsControl可以简化操作。
答案 1 :(得分:0)
好的,问题解决了,我将主要自定义控件的继承从控件转换为ItemsControl,并将我的子对象继承到FrameWork元素,就是这样。无需进一步修改。
谢谢大家的建议!