c# - WPF nested ListViews scrolling behaviour -
I have a ListView that contains some other ListViews in the ItemTemplate Definition which I see in the parent list To be able to scroll in, even when a cursor is entered in the list of a child. Because at this time, this fact (to answer one before being cursor on an internal ListView)
If you do not need to be able to scroll through your child's list,
ScrollViewer.HorizontalScrollMode = "disabled" ScrollViewer.VerticalScrollMode = "disabled"
Comments
Post a Comment