How do I turn off the integral scrolling in a WPF ListView? By default, scrolling a ListView jumps down so I must scroll a whole item at a time. I would like to scroll half way, quarter way, etc.
相关问题
- VNC control for WPF application
- How to create Circular view on android wear?
- WPF Binding from System.Windows.SystemParameters.P
- JSON Exception - No value for wanted parameter
- Android: ListView rounded corner hidden by list it
Set the property
ScrollViewer.CanContentScroll
of yourListView
to False. Then the contents will scroll pixel-wise.