System.Windows.Controls.Image
должны это сделать.
Не проверял, но он должен работать.
public class myCustomControl {
//...
public ObservableCollection<Image> Images {
get { return (ObservableCollection<Image>)GetValue(ImagesProperty); }
set { SetValue(ImagesProperty, value); }
}
// Using a DependencyProperty as the backing store for Images. This enables animation, styling, binding, etc...
public static readonly DependencyProperty ImagesProperty =
DependencyProperty.Register("Images", typeof(ObservableCollection<Image>), typeof(myCustomControl), new PropertyMetadata(null));
}