in my application i'm using a SurfaceScrollView with a Label in it. How is it possible to scroll the Label only vertically? I tried a lot but nothing worked ...
Here's a little code snippet:
<Custom:SurfaceScrollViewer x:Name="BeschreibungScrollView" PanningMode="VerticalOnly" Height="131" Canvas.Left="27.5" Canvas.Top="502" Width="1308" Foreground="#FF5DDA4C" FontSize="26.667" FontFamily="/RaumPlanungsAssistent;component/Fonts/#Verdana" FontStyle="Italic">
<Label x:Name="Beschreibung" Content="Beschreibung ..." Foreground="#FF27D010"/>
</Custom:SurfaceScrollViewer>
Has anyone an idea how to scroll only vertically?