A way to shorten the record of the code below.
<local:MyUserControl>
<local:MyUserControl.MyDependencyProperty>
<local:MyOtherUserControl>
</local:MyUserControl.MyDependencyProperty>
</local:MyUserControl>
I'd like to write this in one line:
<local:MyUserControl>
<local:MyUserControl.MyDependencyProperty="(..) local:MyOtherUserControl" />
</local:MyUserControl>
Is any posible way to do this? I try using x:Type, DynamicResource, nothing work.