I have a custom control(CustomPanel), i set the ManipulationMode as Scale but i can't able to scroll. Which ManipulationMode is suit for scrolling and panning?
Please find my custom control.
<ContentPresenter Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Border>
<Grid>
<ScrollViewer x:Name="scrollViewer"
HorizontalScrollBarVisibility="Visible"
VerticalScrollBarVisibility="Visible"
HorizontalAlignment="Left"
VerticalAlignment="Top">
<local:CustomPanel x:Name="customPanel" Height="800" Width="900"
ManipulationMode="Scale"/>
</ScrollViewer>
</Grid>
</Border>
</ContentPresenter>