我有一个UserControl
,里面有一个DependencyProperty
EmployeeSchedule
,可以接受DataTable
或DataRow
。我创建了Listbox
并在ItemTemplate
我提到了这个UserControl
。
我的问题是UserControl
的数据是它所放置的DataContext
的当前或ListboxItem
。我如何将ListboxItem
的数据提供给用户控件依赖属性?
日Thnx
答案 0 :(得分:0)
<custom:MyUserControl EmployeeSchedule="{Binding PathToScheduleOffTheAcutalDataObject}" />
可靠?数据绑定为您提供了一种强大的方法来引用数据项上可用的属性。这可以采用简单属性名称,多级路径以及数组索引等形式。