I have class Marker
class Marker {
public double Position {get; set;}
public string Label {get; set;}
}
and custom control that, among other properties, exposes collection of markers
class MyControl {
public ObservableCollection<Marker> Markers {get; set;}
}
I'd like to mimic ItemsControl behaviour and allow users of my component to specify markers either directly or by using ItemsSource analogy. Moreover I'd like both methods to support databinding (preferably in XAML)
Markers directly
<my:MyControl>
<my:MyControl.Markers>
<my:Marker Position="{Binding X}" />
</my:MyControl.Markers>
</my:MyControl>
Marker using MarkersSource
<my:MyControl MarkersSource={Binding UserSpecifiedCollection}">
</my:MyControl>
The first method is pretty straightforward but I'am struggling with the second one.
How can I implement MarkesSource? How can be items of UserSpecifiedCollection converted to Marker type? How can be properties of UserSpecifiedCollection items be databound to properties of Marker?
Regards conversion I think a ValueConvertor can be used, but I would prefer pure XAML solution, something like DataTemplates. It is possible?