up vote 0 down vote favorite
share [g+] share [fb]

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

link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I found the way to do this I defined control template as following

<Style TargetType="local:MyCustomControl">
  <Setter Property="Template">
    <Setter.Value>
      <ControlTemplate TargetType="local:MyCustomControl">
        <ScrollViewer>
          <Canvas>
           <ContentPresenter/>
          </Canvas>
        </ScrollViewer>
      </ControlTemplate>
    </Setter.Value>
  </Setter>
</Style>

Its working for me. Is it the proper way?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.