I have a CollectionEditor called Pictures which has key value pairs as items. The value is a path to an image file. My template for CollectionEditor looks like this:
<Style TargetType="telerik:CollectionEditor">
<Setter Property="ItemTemplate">
<Setter.Value>
<DataTemplate>
<TextBlock Text="{Binding Path=Bit}" />
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
I would like to add a browse button to the 'content' field. Is that possible?