0

my ScrollViewer doesn't work. scrolling isn't possible.

<ScrollViewer>
 <StackPanel>
   <ListView>  </ListView>
   <Grid>      </Grid>
   <ListView>  </ListView>
 </StackPanel>
</ScrollViewer>

i have tried different possibilities with setting of height (for ScrollViewer and StackPanel).

how to scroll the content ?

EDIT: VerticalScrollBarVisibility="Visible" and CanContentScroll="True" already used

jeff

Ray
  • 45,695
  • 27
  • 126
  • 169
Jeffrey
  • 1,392
  • 4
  • 11
  • 18

1 Answers1

0

It's probably because you have your scrollviewer inside something like a stackpanel. Try a grid instead.

Anders Rune Jensen
  • 3,758
  • 2
  • 42
  • 53