0
我有一個具有對象集合的自定義WPF UserControl。在更新項目源時更新WPF usercontrol中項目的集合
public class MyUserControl : UserControl
{
public readonly static DependencyProperty PointsSourceProperty =
DependencyProperty.Register("PointsSource", typeof(IEnumerable), typeof(MyUserControl), new FrameworkPropertyMetadata(null, OnPointsSourceChanged));
public IEnumerable PointsSource
{
get { return GetValue(PointsSourceProperty) as IEnumerable; }
set { SetValue(PointsSourceProperty, value); }
}
private ObservableCollection<DataPoint> _points = new ObservableCollection<DataPoint>();
public ObservableCollection<DataPoint> Points
{
get { return points; }
}
private static void OnPointsSourceChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
// Expect to update Points collection
}
}
public class DataPoint : DependencyObject
{
public readonly static DependencyProperty TimeProperty =
DependencyProperty.Register("Time", typeof(DateTime), typeof(DataPoint));
public readonly static DependencyProperty ValueProperty =
DependencyProperty.Register("Value", typeof(double), typeof(DataPoint));
public DateTime Time
{
get { return (DateTime)GetValue(DateTimeProperty); }
set { SetValue(DateTimeProperty, value); }
}
public double Value
{
get { return (double)GetValue(ValueProperty); }
set { SetValue(ValueProperty, value); }
}
}
我定義我的控制是這樣,其中的數據是在視圖模型觀察集合:
<my:myUserControl PointsSource="{Binding Data}">
<my:myUserControl.Points>
<my:Point Time="{Binding TimeUtc}" Value="{Binding Value}" />
</my:myUserControl.Points>
</my:myUserControl>
如何更新點收集而PointsSource值改變了嗎?