I have a Silverlight control derived from ContentControl. I use it in following way
<local:CustomControl>
<local:AnotherControl>
</local:CustomControl>
I want to have the content (i.e. AnotherControl) in a ScrollViewer. Without changing the above XAML usage, how can I have the content in scrollviewer? What modification do I need to make in CustomControl's template?
Thanks