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 ).
Asked
Active
Viewed 1,178 times
2
-
So you don't need to scroll at all on the inner `ListeView`? – dkozl Jan 22 '15 at 13:28
-
@The inner listview is there jut to host a gridview. And vertically i will not need a scroll. But horizontally yes. – Olaru Mircea Jan 22 '15 at 13:35
-
1This answer should help you: http://stackoverflow.com/a/23346121/526704 – DLeh Jan 22 '15 at 13:37
-
@Thank you very much DLeh, that solved the thing. – Olaru Mircea Jan 22 '15 at 13:43
1 Answers
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