WPF: how to define collections for use in xaml
- by Aran Mulholland
I want to define something like this
<myCustomControl>
<myCustomControl.Images>
<Image
Source="{StaticResource LockedIcon16}" />
<Image
Source="{StaticResource UnlockedIcon16}"/>
<myCustomControl.Images>
<myCustomControl/>
what property definitions do i need to get that collection (Images) happening?