is there an equivalent for WPF ContentPropertyAttribute in Silverlight clr?
I mean I'm creating some custom control. the control contains a custom children collection. I want the xaml reader to add xaml children to that collection. so instead of
<control>
<control.children>
<child1 />
<child2 />
<child3 />
<control.children>
</control>
I want to be able to write
<control>
<child1 />
<child2 />
<child3 />
</control>