2

I have a ListView which contains some other ListViews in it's ItemTemplate definition. What i am looking for is to be able to scroll in the parent list even when the cursor is entered on one of the children's ListView. Because at this moment, this fact ( having the cursor on an inner ListView is preventing the first one to respond ).

Olaru Mircea
  • 2,570
  • 26
  • 49

1 Answers1

1

If you dont need to be able to scroll in child listview's you need to add to your template

ScrollViewer.HorizontalScrollMode="Disabled" ScrollViewer.VerticalScrollMode="Disabled"

RenDishen
  • 928
  • 1
  • 10
  • 30