我有一个绑定到对象列表的 ListView。当我在 ListView 中选择一个项目时,我会捕获一个SelectionChanged
事件,然后将所选对象传递给详细信息视图。
protected void list_selectionChanged(object sender, SelectionChangedEventArgs e) {
var myObject = theList.SelectedItem as MyObjectType;
detailsView.DataContext = myObject;
}
detailsView 是与 ListView 相同的 WPF 中的 UserControl。它包含一些 XAML,如下所示:
<Label Content="{Binding Path=deviceId}"></Label>
<l:MyUc deviceId="{Binding Path=deviceId}" />
在 MyUC 中,我定义了一个 DependencyProperty:
public static readonly DependencyProperty deviceIdProperty = DependencyProperty.Register("deviceId", typeof(Guid), typeof(MyUC), new FrameworkPropertyMetadata(null));
public Guid deviceId {
get { return (Guid)GetValue(deviceIdProperty); }
set { SetValue(deviceIdProperty, value); }
}
标签显示 deviceId,但 MyUC 中的属性从未设置。
谁能发现我的错误?